<!--

var imgPath = "img/";

bot1_on = new Image(165,20);
bot1_on.src = imgPath + "bot1_.gif";
bot1_off = new Image(165,20);
bot1_off.src = imgPath + "bot1.gif";
bot1_sel = new Image(165,20);
bot1_sel.src = imgPath + "bot1_.gif";

bot2_on = new Image(165,20);
bot2_on.src = imgPath + "bot2_.gif";
bot2_off = new Image(165,20);
bot2_off.src = imgPath + "bot2.gif";
bot2_sel = new Image(165,20);
bot2_sel.src = imgPath + "bot2_.gif";

bot3_on = new Image(165,20);
bot3_on.src = imgPath + "bot3_.gif";
bot3_off = new Image(165,20);
bot3_off.src = imgPath + "bot3.gif";
bot3_sel = new Image(165,20);
bot3_sel.src = imgPath + "bot3_.gif";

bot4_on = new Image(165,20);
bot4_on.src = imgPath + "bot4_.gif";
bot4_off = new Image(165,20);
bot4_off.src = imgPath + "bot4.gif";
bot4_sel = new Image(165,20);
bot4_sel.src = imgPath + "bot4_.gif";

bot5_on = new Image(165,20);
bot5_on.src = imgPath + "bot5_.gif";
bot5_off = new Image(165,20);
bot5_off.src = imgPath + "bot5.gif";
bot5_sel = new Image(165,20);
bot5_sel.src = imgPath + "bot5_.gif";

bot6_on = new Image(165,20);
bot6_on.src = imgPath + "bot6_.gif";
bot6_off = new Image(165,20);
bot6_off.src = imgPath + "bot6.gif";
bot6_sel = new Image(165,20);
bot6_sel.src = imgPath + "bot6_.gif";

bot7_on = new Image(165,20);
bot7_on.src = imgPath + "bot7_.gif";
bot7_off = new Image(165,20);
bot7_off.src = imgPath + "bot7.gif";
bot7_sel = new Image(165,20);
bot7_sel.src = imgPath + "bot7_.gif";

bot8_on = new Image(165,20);
bot8_on.src = imgPath + "bot8_.gif";
bot8_off = new Image(165,20);
bot8_off.src = imgPath + "bot8.gif";
bot8_sel = new Image(165,20);
bot8_sel.src = imgPath + "bot8_.gif";

bot9_on = new Image(165,20);
bot9_on.src = imgPath + "bot9_.gif";
bot9_off = new Image(165,20);
bot9_off.src = imgPath + "bot9.gif";
bot9_sel = new Image(165,20);
bot9_sel.src = imgPath + "bot9_.gif";

bot10_on = new Image(165,20);
bot10_on.src = imgPath + "bot10_.gif";
bot10_off = new Image(165,20);
bot10_off.src = imgPath + "bot10.gif";
bot10_sel = new Image(165,20);
bot10_sel.src = imgPath + "bot10_.gif";

bot11_on = new Image(165,20);
bot11_on.src = imgPath + "bot11_.gif";
bot11_off = new Image(165,20);
bot11_off.src = imgPath + "bot11.gif";
bot11_sel = new Image(165,20);
bot11_sel.src = imgPath + "bot11_.gif";

bot12_on = new Image(165,20);
bot12_on.src = imgPath + "bot12_.gif";
bot12_off = new Image(165,20);
bot12_off.src = imgPath + "bot12.gif";
bot12_sel = new Image(165,20);
bot12_sel.src = imgPath + "bot12_.gif";

bot13_on = new Image(165,20);
bot13_on.src = imgPath + "bot13_.gif";
bot13_off = new Image(165,20);
bot13_off.src = imgPath + "bot13.gif";
bot13_sel = new Image(165,20);
bot13_sel.src = imgPath + "bot13_.gif";

bot14_on = new Image(165,20);
bot14_on.src = imgPath + "bot14_.gif";
bot14_off = new Image(165,20);
bot14_off.src = imgPath + "bot14.gif";
bot14_sel = new Image(165,20);
bot14_sel.src = imgPath + "bot14_.gif";


function setStatus(imageName, status)
{
    //alert( imageName + " " + status);

	var selImg = document.crt.sel.value;

	if( imageName != selImg )
	{
		if( status == 0) // click 
		{
			document[imageName].src = eval( imageName + "_sel.src");

			if( selImg != "")
			{	
			    if (selImg.length > 2)
				{
					document[ selImg].src = eval( selImg + "_off.src");;
				}
			}

			document.crt.sel.value = imageName;			
		}

		if( status == 1) // mouseout
		{
			document[ imageName].src = eval( imageName + "_off.src");
		}

		if( status == 2) // mouseover
		{
			document[ imageName].src = eval( imageName + "_on.src");
		}
	}
}


function popup(str,l,a) {

if (win) 

{
	tmp = win;
	win = null;
	if (navigator.appName != "Netscape")
		tmp.close();
}

win = window.open(str,"popup","scrollbars=1,resizable=1,width="+l+",height="+a+",status=0,location=0,menubar=0,toolbar=0,top=105,left=200");
win.focus();

}

var win


function PrintThisPage() 
{ 
   var sOption="toolbar=yes,location=no,directories=yes,menubar=yes,"; 
       sOption+="scrollbars=yes,width=750,height=600,left=100,top=25"; 

   var sWinHTML = document.getElementById('contentstart').innerHTML; 
   
   var winprint=window.open("","",sOption); 
       winprint.document.open(); 
       winprint.document.write('<html><LINK href=css/print.css rel=Stylesheet><body onload=javascript:window.print()>'); 
       winprint.document.write(sWinHTML);          
       winprint.document.write('</body></html>'); 
       winprint.document.close(); 
       winprint.focus();
}
//-->


