function OpenBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function OpenWin0(){
win=window.open("/prdct/semicon/global.html","amd1","toolbar=no,location=no,status=no,menubar=no,scrollbars=1,resizable=yes,width=640,height=650");
}

function checkEmpty()
{
var re = true, elemObj;
if( document.forms[0] && document.forms[0].key ) {
elemObj = document.forms[0].key;
if( elemObj.value == "" ) re = false, alert("Please input some characters for searching !!");
}
return re;
}

var IE = document.all ? true : false;
var NS4 = document.layers ? true : false;
var DOM = document.getElementById ? true : false;
var MAC = ( navigator.appVersion.indexOf("Mac") >= 0 );


// NN4.0 以上、または IE5.0 以上で印刷を行う
function printPage() {

	var re;
	if( NS4 || ( DOM && !IE ) || ( IE && DOM && !MAC ) ) {
		re = true, window.self.print();
	} else {
		re = false;
		if( window.self.location.href.indexOf("_j_p.") < 0 ) {
			alert("In the browser of use, it cannot print from this button.");
		} else {
			alert("Sorry. This program does not support your browser.");
		}
	}
	return re;
}

