//バナー
/*function winopenHome(type) {
 var win;
 win = window.open('http://cocklobin.com/sub/' + type + '.html', 'new','width=560,height=570,scrollbars=1,resizable=yes');
 win.focus();
}*/

function winopenHome(pURL,pName,pSize,sSwitch){
	var wWidth,wHeight;
	var wSize,wFeatures;
	var wLeft,wTop,PositionX,PositionY;
	
	wWidth = window.screen.availWidth/2;
	wHeight = window.screen.availHeight/2;
	wSize = pSize.split(":");
	wLeft = wSize[0].split("=");
	wTop = wSize[1].split("=");
	PositionX = wWidth-wLeft[1]/2;
	PositionY = wHeight-wTop[1]/2;
	
	wFeatures = wSize+",left="+PositionX+",top="+PositionY;
	var win = window.open('sub/' + pURL + '.html',pName,wFeatures+',resizable=yes'+',scrollbars='+sSwitch);
	
	//win.focus();
}


//ウィンドウを閉じる
function winClose() {
	var name=confirm("このウィンドウを閉じてもよろしいですか？")
	if (name==true) {
		window.close();
	}
}

//ポップアップからのリンク
function linkto(type) {
	window.opener.location.href = ('../' + type + '.html');
	if( navigator.userAgent.indexOf('AppleWebKit/') > -1 ) {
		// SafariとChromeだけ
		window.blur();
	}
	window.opener.focus();
}
