
 <!-- Rechte Maustaste unterdrücken // -->

           <!--
 var message="";
///////////////////////////////////
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if 
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers) 
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}

document.oncontextmenu=new Function("return false")
           // -->






<!-- Bilder in einem neuen Fenster zentrieren & dabei rechte Maustaste unterdrücken // -->
<!--
/* Auto center window script- Eric King (http://redrival.com/eak/index.shtml) */
var win = null;
function NewWindow(mypage,myname,w,h,scroll,text){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
var z = h/1+65;
var y = w/1+20;
settings = 'height='+z+',width='+y+',top='+TopPosition+',left='+LeftPosition+',scrollbars=no,resizable'
win = window.open("","NewWindow",settings);
win = window.open("","NewWindow",settings);
win.document.write ("<HTML>");
win.document.write ("<HEAD>");
win.document.write ("<TITLE>www.JessicaKessler.de</TITLE>");
win.document.write ("<meta http-equiv='imagetoolbar' content='no'>");
win.document.write ("</HEAD>");
win.document.write ("<BODY background='images/image1.gif'>");
win.document.write ("<CENTER><IMG SRC='");
win.document.write (mypage);
win.document.write ("' BORDER=0>");
win.document.write ("<form><input type=button name='fenster' value='Fenster schließen?' onClick='JavaScript:self.close()'></form>");
win.document.write ("</center></BODY></HTML>");
win.document.close();
win.document.bgColor="#FFFFFF"
if(win.window.focus)
{win.window.focus();}
}
// -->

