//                                     Javascript .ASP file Popup Window Function
//
// Include the following code to reference this file in the <head> section of your HTML page:
// 	<SCRIPT SRC="includes/popup.js" Language="javascript" Type="text/javascript"></script>
// ... make sure the script is called before your onclick routine(s), and make sure this 
// script is stored in the "includes" folder of the site.

	function popUp(sFileName, wid, hgt)
		{
		var oFile = new String(sFileName);
		if (oFile != "")
			{
			var popupWindow = window.open(oFile,"","width=" + wid + ",height=" + hgt + ",left=70,top=20,scrollbars,resizable");
			popupWindow.focus();
			}
		else
			{
			alert("There was no filename passed to this function.");
			}
		return false;
		}
