function customPopUp(url, width, height, top, left)
      {
   pressWin = window.open(url, "new","scrollbars=no,menubar=no,toolbar=no,status=no,width="+width+",height="+height+",resizable=no, top="+top+",left="+left)
      }

   
		function confirm_msg(msg,url)
		{
			input_box=confirm(msg);
			if (input_box==true){ 	document.location=url;	}
		}
	
