function sagaPopup(myUrl,myWidth,myHeight)
{
  var generator=window.open('','mYpopup','toolbar=no,location=no,directories=no,scrollbars=yes,status=no,resizable=no,copyhistory=no,width=' + myWidth + ',height=' + myHeight + '');
  
  generator.document.write('<body topmargin="0" leftmargin="0"><table border="0" cellpadding="0" cellspacing="0" width="100%"><img src="'+myUrl+'"></table></body>');
  generator.document.close();
}

