// file: popup.jsfunction popup(page_name)	{		var url ="" + page_name;		pophelp = window.open("","subWindow","height=400,width=600,resizable=yes","resizable=yes");		pophelp.focus();		pophelp.location = url;		}