function windowOpen(URL,W,H){
	subWin=window.open(URL,"sample","width="+W+",height="+H+",scrollbars=no,location=no,menubar=no");
	subWin.document.focus();
}

function windowOpenBar(URL,W,H){
	subWin=window.open(URL,"BAR","width="+W+",height="+H+",scrollbars=yes,location=no,menubar=no");
	subWin.document.focus();
}