/*
regex = new RegExp("http://www.heinz.jp/fun/index.php", "i");
if(document.referrer.match(regex)){
	openFullWin();
}
*/
	function openWindow () {
		var linkedUri = openSlWindow.arguments[0];
		 if(screen.width<1024){
			 alert("ディスプレイサイズを 1024 x 768 以上でご覧ください。");
		 }
		 var winPopup = window.open(linkedUri,"planetPOTATO","width=1014,height=710,resizable=yes,scrollbars=yes,menubar=yes,location=yes");
	}

	function openSlWindow () {
			var deff = "";
			this.NavName = navigator.appName;
			this.NavAnt = navigator.userAgent;

			var height = 0;
			var fixWidth = 8;
			var fixHeight = 28*3;
			var screenHeight = screen.availHeight-fixHeight;
			var screenWidth = screen.availWidth-fixWidth;
			
		
			widthxheight = "width="+screenWidth +",height="+screenHeight+",resizable=yes,scrollbars=yes,location=no,menubar=yes";
			
			var indexwin= window.open("http://www.heinz.jp/fun/oreida/planetpotato/pp/index.html","planetPOTATO",widthxheight);
			if(indexwin != null) {
				indexwin.focus() ;
			}
	}
