function wo(URL,wh){
window.open(URL,'newWin',wh);
}

function subWinOpen(wName,w,h){
	window.open(wName,"newwin","width="+w+",height="+h+",scrollbars=0");
}

function up(wName){
window.open(wName,"newwin","width=400,height=260,scrollbars=0");
}

function check_ok(String){
if (window.confirm(String)) {
return true;		
}else{
return false;
}
}
