// JavaScript Document
function openWindowEx(){
	var scWidth;
	var scHeight;
	var features;

	features = "location=no, menubar=no, status=no, scrollbars=no, resizable=no, toolbar=no";
	scWidth = screen.width;
	scHeight = screen.height;

	if(scHeight > 960){
		window.open('content_l.html','title','width=1200,height=900,' + features);
	}else{
		window.open('content_s.html','title','width=900,height=675,' + features);
	}
	
}

<!--
function openWinN(){
	window.open("http://www.ohtori-c.com/html_site/o_news.html","","width=450,height=600");
}
//-->
