// JavaScript Document
function deleteRecord(URL){
var conf=confirm("Do you realy want to:\n    Delete this Record.?");
if(conf)
eval("self.location='"+URL+"';");
}
function updateRecord(URL){
eval("self.location='"+URL+"';");
}
function SequenceUpdate(URL){
eval("self.location='"+URL+"';");
}
function popupWin(content,w,h,r)
 {
   mywindow = window.open(content,"mywindow","location=0,status=0,resizable=1,scrollbars="+r+",width="+w+",height="+h+"");
  mywindow.moveTo(220,120);
 }
 
function con_popup(titleContent,content,w,h,r)
{
	 var newWind = window.open("", "advert","toolbar=no, location=no, directories=no, status=yes, menubar=no, copyhistory=no,resizable=1,scrollbars="+r+",width="+w+",height="+h+"");
	  with(newWind.document){
	  open();
	  write('<style>body{text-align:right;direction:rtl;font:10pt tahoma,Arial;color:#474747;background-color:#ffffe3;}</style>');
	  write('<div style="text-align:right;direction:rtl;font:16px Arial;color:#ed600b;;font-weight:bold; line-height:30px">');
	  write(titleContent);
	  write('</div>');
	  write('<div style="text-align:right;direction:rtl;">');
	  write(content);
	  write('</div >');
	  write('<div style="text-align:center;direction:rtl;font:10pt tahoma,Arial;color:#ed600b; line-height:30px;margin-top:20px"><a href="javascript:self.close(  );">close window</a></div>');
	  close();
	  }
	  newWind.moveTo(800,20);
	  newWind.focus(  );
}

