//--------------------------------------------------
//        window.open
//--------------------------------------------------

function openBrWindow(theURL,winName,features) {
	sealWin=window.open(theURL,winName,features);
	sealWin.focus();
}
function open_popup(theURL) {
	sealWin=window.open('popup/free_drysuits.html','free_drysuits','toolbar=0,location=0,directories=0,status=0,menubar=0, scrollbars=yes,resizable=yes,width=520,height=390');
	sealWin.focus();
}
function CloseWin(){
    window.close();
}
