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