//----------------------------------------------------------------------------------------------------------------
// * generic popup window function
//----------------------------------------------------------------------------------------------------------------
function PopWindow(inURL, inWidth, inHeight, inName, inHasScrollbars){

	self.name="mainWin";

	var param3 = "height=" + inHeight + ",width=" + inWidth + ",toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=no,scrollbars=" + inHasScrollbars;

	// for debugging...
	//alert("param3: " + param3);

	window.open(inURL, inName, param3);
	}


// jgo--looking to centralize the javascript code for the popup window
// so far the following template file are making use of this file:
//feature.tmpl
//earthpulse.tmpl	(need to change future references in content page)
//feature_list.tmpl
//final_edit.tmpl
//forum.tmpl
//forum_list.tmpl
//hip_zips.tmpl
//home.tmpl		(need to change future references in content page)
