<!--
// auto centering popup
var win = null;
function PopWindow(MyPage,MyName,w,h){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,resizable=no,status=yes,menubar=yes'
win = window.open(MyPage,MyName,settings)
if(win.window.focus){win.window.focus();}
}

// auto centering popup - timeline detail
var win = null;
function DetailWindow(MyPage,MyName,w,h){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars=yes,resizable=no,status=no,menubar=no'
win = window.open(MyPage,MyName,settings)
if(win.window.focus){win.window.focus();}
}

// check e-mail for validity
function CheckEmail(form) {
    Ctrl = form.ItemEmail;
    if (Ctrl.value == "" || Ctrl.value.indexOf ('@', 0) == -1) {
    return (false);
    } else
        return (true);
} 

//Disable right mouse click
var message="   Copyright 2006 Greek Royal Family   ";
///////////////////////////////////
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("alert(message);return false")
// --> 
