//1024x768
function wopen1() {
window.open("top.html","win","width=1040,height=778,scrollbars=yes,location=no,menubar=no,toolbar=no, status=no,directories=no,resizable=yes");
}

function GoWin(WO) {
	if ( opener.closed ) {
NewWin = window.open("","NewWindow");
NewWin.location.href = WO;
NewWin.focus(); 
	                         }
	else { opener.location.href = WO 
	opener.focus(); 
	}
	}
	

