function printForm()
{
  document.focus();
  window.print();
}


function PrintPDF()
  {
     var location = document.location.href;
    var Anfang = location.indexOf("?");
    var Anzahl = location.length - Anfang+1;
    var Query = location.substring(Anfang, 10000);
    var Url = "";
    if(Anfang != -1)
       Url = escape("http://www.belkaw.de" + document.location.pathname +Query) ;
    else
       Url = escape("http://www.belkaw.de" + document.location.pathname) ;
   
    document.location.href = "/PrintPDF.aspx?filename=" + document.location.pathname + "&url=" +Url; 
 }