var version = "other"
browserName = navigator.appName;   
browserVer = parseInt(navigator.appVersion);
var arr_middleimg = new Array();

if (browserName == "Netscape" && browserVer >= 3) version = "n3";
else if (browserName == "Netscape" && browserVer < 3) version = "n2";
else if (browserName == "Microsoft Internet Explorer" && browserVer >= 4) version = "e4";
else if (browserName == "Microsoft Internet Explorer" && browserVer < 4) version = "e3";


function marquee1()
{
	if (version == "e4")
	{
	document.write("<center><marquee behavior=alternate direction=left width=480 height=60 scrollamount=2 scrolldelay=30 onmouseover='this.stop()' onmouseout='this.start()'>")
	}
}

function marquee2()
{
	if (version == "e4")
	{
	document.write("</marquee>")
	}
}

function getMiddleImgTable()
{
	var s = "<table  border='0'><tr>";
	for(var i=0;i<arr_middleimg.length;i++)
	{
		s += "<td><img src='"+arr_middleimg[i]+"' width='160' height='130'></td>";
	}
	s += "</tr></table>";
	
	return s;
}

function showMiddleImg()
{
	marquee1();
	var sMiddle = getMiddleImgTable();
	document.write(sMiddle);
	marquee2();
	document.write("</center>")
}

//var str; 
//str="<table  border='0'><tr><td><img src='images/1.jpg' width='160' height='130'></td><td><img src='images/2.jpg' width='160' height='130'></td><td><img src='images/3.jpg' width='160' height='130'></td><td><img src='images/4.jpg' width='160' height='130'></td><td><img src='images/5.jpg' width='160' height='130'></td><td><img src='images/6.jpg' width='160' height='130'></td><td><img src='images/7.jpg' width='160' height='130'></td><td><img src='images/8.jpg' width='160' height='130'></td><td><img src='images/9.jpg' width='160' height='130'></td><td><img src='images/10.jpg' width='160' height='130'></td><td><img src='images/11.jpg' width='160' height='130'></td><td><img src='images/12.jpg' width='160' height='130'></td><td><img src='images/13.jpg' width='160' height='130'></td><td><img src='images/14.jpg' width='160' height='130'></td><td><img src='images/15.jpg' width='160' height='130'></td><td><img src='images/16.jpg' width='160' height='130'></td><td><img src='images/17.jpg' width='160' height='130'></td><td><img src='images/18.jpg' width='160' height='130'></td></tr></table>";
//document.write(str);
//marquee2();document.write("</center>")
