//in den Vordergrund bringen
function vor () {
top.focus();
}
vor();

//STYLE fuer IE Formfelder
if (document.all)
{
document.write('<style>');
document.write('.input {border-color: #839525;background-color:#E6E6E6;width:150px;border-style:solid;border-width:1px;font-family:Arial, Verdana, Helvetica, sans-serif;font-style:normal;font-size:10px;color:#000000}');
document.write('.input2 {border-color: #839525;background-color:#FFFFFF;width:150px;border-style:solid;border-width:1px;font-family:Arial, Verdana, Helvetica, sans-serif;font-style:normal;font-size:10px;color:#000000}');
document.write('.send {border-color: #839525;background-color:#F2F2F2;width:80px;border-style:solid;border-width:1px;font-family:Arial, Verdana, Helvetica, sans-serif;font-style:normal;font-size:10px;color:#000000}');
document.write('.send2 {border-color: #839525;background-color:#F2F2F2;width:120px;border-style:solid;border-width:1px;font-family:Arial, Verdana, Helvetica, sans-serif;font-style:normal;font-size:10px;color:#000000}');
document.write('</style>');
}

//Disable right mouse click Script
//By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
//For full source code, visit http://www.dynamicdrive.com

var message="Function Disabled!";

///////////////////////////////////
function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("return false")
