function ow()	{	
	w1=window.open('','new_window','resizable=yes, menubar=no, status=yes, scrollbars=yes, width=750, height=500');
}


function setclass(theId,classname) {
if(document.getElementById) {
var block = document.getElementById(theId);
block.className = classname;
}
}