function popWin(whi) {
	var newwindow = window.open(whi,"thankyou","toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes,width=300,height=340,top=125,left=125");
	newwindow.focus();
}
function openWindow(nid,wid,hei,locl,loct,scrol){
	if (document.getElementById) wid=wid+9;
	var remote = open ("", nid, "left="+locl+",top="+loct+",toolbar=0,location=0,directories=0,status=yes,menubar=0,scrollbars="+scrol+",resizable=1,width="+wid+",height="+hei);
	remote.focus();
	if (nid=='seminars') {
		remote.location.href = ('http://www.shevypro.com/images/seminars/seminar1.htm');
	} else {
		remote.location.href = (nid+'.htm');
	}
}
