function spawnWindow(wurl, wname, width, height,tmpvalue,tmpdate) {
	if (tmpvalue != null)
		thewindow = window.open(wurl+'?lsec='+tmpvalue+'&ldate='+tmpdate,wname,'width='+width+',height='+height+',toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizeable=no');
	else
		thewindow = window.open(wurl,wname,'width='+width+',height='+height+',toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizeable=no');			
	thewindow.focus();
}  

function spawnWindowNoFrame(wurl, wname, width, height) {
	thewindow = window.open(wurl,wname,'width='+width+',height='+height+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizeable=no');
	thewindow.focus();
}  