function spawnWindow(wurl, wname, width, height) {
	thewindow = window.open(wurl,wname,'width='+width+',height='+height+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizeable=no');
	thewindow.focus();
}

