// open a new window
<!--
function wopen (url, width, height, name)
{
	var features ;
	features = 'scrollbars=yes,width=' + width + ',height=' + height + ',status=0,menubar=yes,resizable=yes' ;
	// document.write (features) ;
	window.open (url, name, features, true) ;
} 
//-->