function google_adsense()
{        
google_ad_client = "pub-3315565909630851";
       google_ad_width = 120;
        google_ad_height = 600;
        google_ad_format = "120x600_as";
        google_ad_type = "text_image";
        google_ad_channel ="";
        google_color_border = "FFFF99";
        google_color_bg = "FFFF99";
        google_color_link = "003300";
        google_color_text = "003300";
        google_color_url = "008000";
}

function clearText(thefield) 
{ 
if (thefield.defaultValue == thefield.value) thefield.value = ""; else thefield.value = thefield.defaultValue 
}

function CallPrint(strid, titel)
{
        this.titel = titel;
        var prtContent = document.getElementById(strid);

        var WinPrint = window.open('','','left=10,top=10,width=650,height=250,toolbar=0,scrollbars=0,status=0');
        WinPrint.document.write("<head>");
        WinPrint.document.write("<link rel=stylesheet type=text/css href=/skin/normal/dechef.css media=print>");
        WinPrint.document.write("<title>");
        WinPrint.document.write(this.titel)
        WinPrint.document.write("</title></head>");
        WinPrint.document.write("<body class=content><table width=580>");
        WinPrint.document.write(prtContent.innerHTML)
        WinPrint.document.write("</table></body></html>");
        WinPrint.document.close();
        WinPrint.focus();
        WinPrint.print();
        WinPrint.close();
}

