/*window open*/
function wopen(wurl,ww,wh){
	WO1=window.open(wurl,"w01","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=0,width=580px,height=640px");
}

function openWin1(){
	window.open("what.html","whatshot", "width=460, height=520, scrollbars=yes, location=no, menubar=no, statusbar=no");
}


function windowOpen(url,W,H) {
	var wo = window.open(url, 'NewWindow', 'width=' + W + ',height=' + H + ',resizable=no,scrollbars=no');
	wo.focus();
}

