function popUp(URL) 
{
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=800,height=600,left = 240,top = 100');");
}

function event(location)
{
	win = window.open("","","height=400,width=280, scrollbars=0, resizable=1, location=0, menubar=0, toolbar=0, status=0")
	win.location=location
}

var lastID = 0;
function SelectImg(id) 
{
	if (lastID > 0) 
	{
		document.getElementById(lastID).className = "simg";
	}
	document.getElementById(id).className = "simg";
	document.getElementById(0).src = document.getElementById(id).src;
	lastID = id;
}
function LoadTrigger() 
{
	SelectImg(1);
}
window.onload = LoadTrigger;
