// JavaScript Document

function Selecter() {
	var 
    ua      = navigator.userAgent,
    isOpera = ua.indexOf('opera') != -1,
		isFirefox = ua.indexOf('Firefox"') != -1,
    isIE    = (document.all && !isOpera)
		;
	if(isIE){ // 文字列に「MSIE」が含まれている場合
		document.write('<p><a href="javascript:Sopen(\'index2.html\')">サンプルオープン</a></p>');
	}
	else{
		document.write('<p><a href="javascript:Sopen(\'index2.html\')">サンプルオープン</a></p>');
	}
}


function Sopen(fileNm){
		var 
    ua      = navigator.userAgent,
    isOpera = ua.indexOf('opera') != -1,
		isFirefox = ua.indexOf('Firefox') != -1,
    isIE    = (document.all && !isOpera)
		;
    
    var sWidth = screen.width;
		var sHeight = screen.height-100;

	window.open(fileNm,"Win2","toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,width="+sWidth+",height="+sHeight);
}

