// JavaScript Document
window.onload = function() {
	setPng();
	
}



function gallery(url,w,h) 
{
	var l = (screen.availWidth / 2) - (w / 2);
	var win = window.open(url, 'win', 'height='+h+',width='+w+',left='+l+',top=50,menubar=0,toolbar=0');
}

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

function showHide(id)
{
	if(document.getElementById(id).style.display == "none")
	{
		document.getElementById(id).style.display = "";
	}
	else
	{
		document.getElementById(id).style.display = "none";
	}
}

