function PrintPage()
{
   if(window.print)
      window.print();
}


function OpenPopWindow(url, width, height)
{
   win = window.open(   url,
                        "SEND_WINDOW",
                        "toolbar=no,location=no,status=yes,scrollbars=yes,resizable=yes,width="+width+",height="+height+",top=50,left=50"
                  );
   win.focus();
   
}

