function openPopup(purl,pwidth,pheight)
{
	var leftstart = (screen.width/2) - (pwidth/2);
	var topstart = (screen.height/2) - (pheight/2);
	var properties = "width="+pwidth+", height="+pheight+", left="+leftstart+", top="+topstart+",toolbar=no,titlebar=no,title=0,location=no,status=no,resizable=no";
	window.open(purl,'Nintendo',properties);
}

function openPopParental(purl,pwidth,pheight)
{
	var leftstart = (screen.width/2) - (pwidth/2);
	var topstart = (screen.height/2) - (pheight/2);
	var properties = "width="+pwidth+", height="+pheight+", left="+leftstart+", top="+topstart+",toolbar=no,titlebar=no,title=0,scrollbars=yes,location=no,status=no,resizable=no";
	window.open(purl,'Parental',properties);
}
