function launch(strURL){
	newwindow=window.open(strURL,'name',"fullscreen=yes ,menubar=no, toolbar=no, resizable=yes, scrollbars=auto");
	if (window.focus) {newwindow.focus()}
}
function privacy(strURL){
	newwindow=window.open(strURL,'name',"menubar=no,width=560,height=600,toolbar=no,resizable=no,scrollbars=yes");
	if (window.focus) {newwindow.focus()}
}
function popUp(strURL,h,w){
	newwindow=window.open(strURL,'name',"menubar=no,width="+w+",height="+h+",toolbar=no,resizable=no");
	if (window.focus) {newwindow.focus()}
}
function popUp2(strURL,h,w){
	newwindow=window.open(strURL,'name',"menubar=no,width="+w+",height="+h+",toolbar=no,resizable=no,scrollbars=yes");
	if (window.focus) {newwindow.focus()}
}
