<!--

function init()
{

}

//#####################################################################################

function preload(imgObj,imgSrc)
{
	if (document.images)
	{
		eval(imgObj+' = new Image()');
		eval(imgObj+'.src = "'+imgSrc+'"');
	}
}

//#####################################################################################

function ch_img(p, n)
{
	document.images[n].src = eval(n+"_"+p+".src");
}

//#####################################################################################

newWin = false;

function openWindow(url,width,height)
{
	c = "toolbar=no,menubar=no,location=no,personalbar=no,status=no,directories=no,";
	c += "resizable=no,scrollbars=no,width="+width+",height="+height+",left=100,top=100";
	
	if(newWin)
	{
		newWin.close();
	}
	newWin = window.open(url,"newWin",c);

}


//-->
