/* website integration code (rating form) yalst LiveSupportTool Autor: Dr. Markus Jasinski Copyright (c) 2003-2010 by rostock-digital, Rostock, Germany http://www.rostock-digital.com */ // Cookie handling function setcookie6(value) { //v2.0 var expDate = new Date(); expDate.setFullYear(expDate.getFullYear() + 30); document.cookie = "YALSTSESSION=" + value + "; path=/; expires=" + expDate.toGMTString(); } function readcookie6() { var allcookies = document.cookie; var pos = allcookies.indexOf("YALSTSESSION="); if (pos != -1) { var start = pos + 13; var end = allcookies.indexOf(";",start); if (end == -1) end = allcookies.length; var value = allcookies.substring(start,end); if (value != "") { return value; } else { return "none"; } } else { return "none"; } } function open_rating(url,width,height) { if (!width) width=500; if (!height) height=350; Fpopupwindow=open(url,"rating_1_1","width="+width+",height="+height+",location=no,menubar=no,statusbar=no,scrollbars=no,dependent=no,screenX=20,screenY=20,left=20,top=20"); if (Fpopupwindow.opener == null) Fpopupwindow.opener = self; Fpopupwindow.focus(); } function str_replace(search,replace,oldstring) { result=""+oldstring; while (result.indexOf(search)>-1) { pos=result.indexOf(search); result=""+(result.substring(0,pos)+replace+result.substring((pos+search.length),result.length)); } return result; } function link(rate,rcookie) { if (typeof y_pagetitle != 'undefined') {autotitle="&pagetitle="+escape(y_pagetitle);} else {autotitle='';} url2="http://www.sulden-info.com/yalst/rating.php?site=1-1&page=Internet&title=Seite%20bewerten&pagetitle=Seite%20bewerten&rating="+escape(rate)+autotitle+"&session="+escape(rcookie)+"&newlang=de&from="+escape(window.document.URL); href=""; return href; } function rating() { mycookie=readcookie6(); if (mycookie=="none") { setcookie6(''); var newcookie=readcookie6(); if (newcookie=='') { mycookie=newcookie; } else { mycookie="none"; } } else { if (mycookie.length!=30) { setcookie6(''); var newcookie=readcookie6(); if (newcookie=='') { mycookie=newcookie; } else { mycookie="none"; } } } table=""; table=table+""; table=table+""; table=table+""; table=table+""; table=table+""; table=table+""; table=table+""; table=table+""; table=table+""; table=table+"
Bitte bewerten Sie diese Seite!
nicht hilfreich"+link(1,mycookie)+"-3"+link(2,mycookie)+"-2"+link(3,mycookie)+"-1"+link(4,mycookie)+"0"+link(5,mycookie)+"1"+link(6,mycookie)+"2"+link(7,mycookie)+"3sehr hilfreich
"; document.write(table); } rating();