<!--
function openWindow(url) {
popupWin = window.open(url, 'new_page', 'width=300,height=350')
}

function fullWindow(url) { 
    var str = "left=0,screenX=0,top=0,screenY=0,resizable";
    if (window.screen) {
      var ah = screen.availHeight - 30;
      var aw = screen.availWidth - 10;
      str += ",height=" + ah;
      str += ",innerHeight=" + ah;
      str += ",width=" + aw;
      str += ",innerWidth=" + aw;
    }
    win=window.open(url, "w", str);
} 

//close window on right mouse click Script
// from http://regretless.com/dodo/newworld


///////////////////////////////////
function clickIE4(){
if (event.button==2){
self.close();
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
self.close();
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("self.close();;return false")


