//***********************************
//ウィンドウの中央配置
//***********************************
//function openWinCenter(url,id,w,h,scrollFlag){
//	x = (screen.width - w) / 2;
//	y = (screen.height - h) / 2;
//	
//	if(scrollFlag){
//		//スクロールバーがいる時
//		if(navigator.appName== "Microsoft Internet Explorer"){
//			//IEの場合のみスクロールバーの幅を足す　メイビー16px
//			w=w+16;
//			}
//		
//		window.open(url,id,"screenX="+x+",screenY="+y+",left="+x+",top="+y+",width="+w+",height="+h+",scrollbars=yes");
//		}
//	
//	else{	
//		//スクロールバーがいらない時	
//		window.open(url,id,"screenX="+x+",screenY="+y+",left="+x+",top="+y+",width="+w+",height="+h+",scrollbars=no");
//		}
//	}

function winopen(url){
	w = 700;
	h = screen.availHeight;
	l = (screen.availWidth - w)/2;
	t = (screen.availHeight - h)/2;
	
	window.open(url,'pop','width='+w+',height='+h+',left='+l+',top='+t+',scrollbars=yes,menubar=yes,toolbar=yes');
	}

