// open a new window

function wopen_report (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) ;
} 

function hwopen(url) {
	helpwind=window.open(url, 'help', "width=400,height=200,toolbar=0,status=0,scrollbars=yes");
}
