<!--
function wopen(wurl, target) 
{ 
	win = window.open(wurl, target, 'width=650, height=450, resizable=yes, scrollbars=yes, menubar=no, status=yes');
	win.focus();
}

function wopenWH(wurl, target, w, h) 
{ 
	win = window.open(wurl, target, 'width='+w+', height='+h+', resizable=yes, scrollbars=yes, menubar=no, status=yes');
	win.focus();
}

function wopenWHS(wurl, target, w, h) 
{ 
	win = window.open(wurl, target, 'width='+w+', height='+h+', resizable=yes, scrollbars=no, menubar=no, status=no');
	win.focus();
}
//-->