//this file load the function wrote in javascript to run the popup

			var popupname = null;
//small popup
			function popup(page)
			{
				var popupname = window.open( page, "PopUp", "width=350,height=400,toolbar=no,scrollbars=yes,location=no");
				if( navigator.appName.indexOf("Explorer") != -1 )
				{
					if( popupname ){
						popupname.close();
						var popupname = window.open( page, "PopUp", "width=350,height=400,resizable=yes,toolbar=no,scrollbars=yes,location=no"); }	}
					else
					{
						if( popupname ){ popupname.focus();}
					}
				}

			var bigpopupname = null;
//big popup			
			function bigpopup(page)
			{
				var bigpopupname = window.open( page, "PopUp", "width=600,height=400,resizable=yes,toolbar=no,scrollbars=yes,location=no");
				if( navigator.appName.indexOf("Explorer") != -1 && navigator.appVersion<4)
				{
					if( bigpopupname ){
						bigpopupname.close();
						var bigpopupname = window.open( page, "PopUp", "width=600,height=400,toolbar=no,scrollbars=yes,location=no"); }	}
					else
					{
					if( bigpopupname ){bigpopupname.focus();}
					}
				}
			
				
		

  