function isparamset(address){
    var output = false;
    var tt=address.search(/\?/);
    if(tt>-1)
    {
        output=true;
    }
    return output;
}

function create_pdf(wert){
    var theurl;
    var ht = "html"
    var pd = "pdf"
    theurl = self.location.href;
    theurl=theurl + "&type="+wert;
    //alert(theurl); //Debug-Augabe
    top.location.href = theurl;
    //window.open(theurl, "DataPublish", "width=800,height=600,left=50,top=50,menubar=no,toolbar=no,dependant=yes,status=no");

}
function auswahl_url(){
    var theurl = self.location.href;
    var tt=theurl.search(lkv);
    if(tt>-1){
        theurl=theurl.replace(lkd,lkv);
        window.open("http://www.lkv-sh.de/viehverkehrsvo,html");
    }
}
function popup(url) {
  ok = window.open(url)
  if (ok) return false;
  else return true;
}

