/* Generic Popup function */
	function openPopupCustom( url, windowname, height, width, scroll ) {
	  var popup = window.open( url , windowname, "toolbar=no,status=yes,scrollbars="+scroll+",menubar=no,locationbar=no,top=35,left=20,width="+width+",height="+height+",resizable=yes");
	  popup.focus();
	}
	
	/* Generic Popup function */
	function openPopupPrint( url, windowname ) {
	  var popup = window.open( url , windowname, "toolbar=no,status=yes,scrollbars=yes,menubar=yes,locationbar=no,top=35,left=20,width=640,height=400,resizable=yes");
	  popup.focus();
	}// JavaScript Document
