<!--
/*****************************************
* Auto Centering Popup
*****************************************/
var win = null;
function Detail(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=no,resizable=no,status=yes,menubar=no'
win = window.open(MyPage,MyName,settings)
if(win.window.focus){win.window.focus();}
}

/*****************************************
* Auto Centering Popup - scrollable
*****************************************/
var win = null;
function Tools(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();}
}


function CheckEmail(form) {
    Ctrl = form.ItemEmail;
    if (Ctrl.value == "" || Ctrl.value.indexOf ('@', 0) == -1) {
    return (false);
    } else
        return (true);
} 


function chgBg(obj,color){
if (document.all || document.getElementById)
  obj.style.backgroundColor=color;
else if (document.layers)
  obj.bgColor=color;
}


//-->
