
	function ChangeColor(button) {
		if (document.getElementById(button).className=="listitem3")
			document.getElementById(button).className="listitem3over";
		else 
			document.getElementById(button).className="listitem3";
	}
	
	function ClickItem(reallink) {
		x = document.getElementById(reallink);
		//x.click();
		document.location = x;
	}
	
	function PicPopup(pic,picwidth,picheight)
	{
		var props, screenw, screenh, win;
	
		var IE4 = (document.all);
		var NS4 = (document.layers);
		var NS6 = (!document.all && document.getElementById);
	
		if(NS6 || NS4) {
			screenw = innerWidth;
			screenh = innerHeight;
		}
		else if(IE4) {
			screenw = document.body.clientWidth;
			screenh = document.body.clientHeight;
		}
	
		x = (screenw-picwidth)/2;
		y = (screenh-picheight)/2;
	
		props="left="+x+",top="+y+",screenX="+x+",screenY="+y+",width="+picwidth+",height="+picheight+",menubar=no,toolbar=no";
	
		win=window.open("","",props);
		win.focus();
		win.document.open();
		win.document.write("<html><head>");
		win.document.write("<script language='JavaScript' type='text/javascript' >");
		win.document.write("function click() { window.close(); } ");
		win.document.write("document.onmousedown=click ");
		win.document.write("</script>");
		win.document.write("<title>Rocklake.at - click to close window</title></head>");	
		win.document.write("<body onblur='window.close()' style='margin=0px; background-color:#152048;'>");
		win.document.write("<center>");
		win.document.write("<img src='"+ pic +"' border='0'>");
		win.document.write("<center>");
		win.document.write("</body></html>");
		win.document.close();
	}
