function popsubwin (mypage, myname, w, h, scroll) {
	window.name = 'persupclass';
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable,status';
	win = window.open(mypage, myname, winprops);
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
function subpoof () {
   window.document.forms.concom.target="persupclass";
   window.document.forms.concom.submit();
	//window.statusbar.visible = true;
	window.status = "Updating Contact Log";
	window.setTimeout("window.close()",3000);
}

