function NewWindow(thepage, thename, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (0);
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(thepage, thename, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

function NewGuideWindow(thepage, thename, w, h, scroll) {
var winl = ((screen.width - w) / 2) + w/2;
var wint = (0);
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(thepage, thename, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

/*No rightclick script v.2.5
(c) 1998 barts1000
barts1000@aol.com
Don't delete this header!
*/

var message="Sie können uns jederzeit kontaktieren\nund wir senden Ihnen ein  Angebot \nfür Ihren Traumurlaub!"; 

// Don't edit below!

function click(e) {
if (document.all) {
if (event.button == 2) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;
// --> 
