<!--

function chmPic(n, t)
{
	document.images[n].src = eval(n+"_"+t+".src");
}

//- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 

newWin = false;

function openWindow(url,width, height, scrollb)
{
	scrb = (scrollb == 1)? "yes" : "no" ;
	
	c = "toolbar=no,menubar=no,location=no,personalbar=no,status=no,directories=no,";
	c += "resizable=no,scrollbars="+scrb+",width="+width+",height="+height+",left=50,top=50";
	

	newWin = window.open(url,"newWin",c);
} 

//- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 

function preload(imgObj, imgSrc)
{
	if (document.images)
	{
		eval(imgObj+' = new Image()');
		eval(imgObj+'.src = "'+imgSrc+'"');
	}
}

//- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 

function init(p)
{
	var i, w, h;
	
	if(document.all && navigator.userAgent.indexOf("Opera") == -1)
	{
	
		if(p == "index")
		{
			document.all["boxBg_small_top"].style.background = "url(_img/1.gif)";
			document.all["boxBg_small_ll"].style.background = "url(_img/1.gif)";
			document.all["boxBg_small_rr"].style.background = "url(_img/1.gif)";
			document.all["boxBg_small_bl"].style.background = "url(_img/1.gif)";
			document.all["boxBg_small_br"].style.background = "url(_img/1.gif)";
			document.all["boxBg_small_bb"].style.background = "url(_img/1.gif)";
		

			document.all["boxBg_middle_top"].style.background = "url(_img/1.gif)";
			document.all["boxBg_middle_ll"].style.background = "url(_img/1.gif)";
			document.all["boxBg_middle_rr"].style.background = "url(_img/1.gif)";
			document.all["boxBg_middle_bl"].style.background = "url(_img/1.gif)";
			document.all["boxBg_middle_br"].style.background = "url(_img/1.gif)";
			document.all["boxBg_middle_bb"].style.background = "url(_img/1.gif)";
		}
		else
		{
			document.all["boxBg_big_top"].style.background = "url(_img/1.gif)";
			document.all["boxBg_big_ll"].style.background = "url(_img/1.gif)";
			document.all["boxBg_big_rr"].style.background = "url(_img/1.gif)";
			document.all["boxBg_big_bl"].style.background = "url(_img/1.gif)";
			document.all["boxBg_big_br"].style.background = "url(_img/1.gif)";
			document.all["boxBg_big_bb"].style.background = "url(_img/1.gif)";		
		}
		
		//background-color || background-image || background-repeat || background-attachment || background-position
		
		//document.all["boxBg_l_t"].style.background-position = "bottom right";
		
			
		for(i=0; i<document.images.length; i++)
		{
			if(document.images[i].src.indexOf(".png") != -1)
			{
				//alert(document.images[i].src);
				w = document.images[i].width;
				h = document.images[i].height;
				document.images[i].src = "_img/1.gif";
				document.images[i].width = w;
				document.images[i].height = h;
			}
		}
	}
}

//-->