function popup(modkey, func, params, name, w, h, returnfield, mode, values)
{	
	if(!w)w=400;
	if(!h)h=300;
	
	NF=window.open('popup.php?id='+modkey+'&func='+func+'&name='+name+'&params='+params+'&returnfield='+returnfield+'&mode='+mode+'&value='+values, name, "width="+w+",height="+h+", scrollbars=yes");
	NF.focus();

} 

function popups(page, wname, w, h){

	NF1=window.open(page, wname, "width="+w+",height="+h+", scrollbars=no,resizable=yes");
	NF1.focus();

}