<!--
function CreateBookmarkLink() {
  if (window.sidebar) { // Mozilla Firefox Bookmark
    window.sidebar.addPanel(document.title, location.href,"")
  } else if( window.external ) { // IE Favorite
    window.external.AddFavorite(location.href,document.title)
  } else if(window.opera && window.print) { // Opera Hotlist
    return true;}
}

function LaunchVideo(file,name,xpos,ypos){
	w=320;//screen.width-125;
	h=256;//screen.height-125;
	NewWindowHM('/video.asp?video='+file+'&title='+name,name,w,h,'no','',xpos,ypos);
}

function ShowImage(file,name,xpos,ypos){
	w=428;//screen.width-125;
	h=350;//screen.height-125;
	NewWindowHM('/image.asp?image='+file+'&title='+name,name,w,h,'no','',xpos,ypos);
}

var winHM=null;
function NewWindowHM(mypage,myname,w,h,scroll,pos,xpos,ypos){
if(pos=="random"){LeftPosition=(screen.width)?Math.floor(Math.random()*(screen.width-w)):100;TopPosition=(screen.height)?Math.floor(Math.random()*(screen.height-h)):100;}
if(pos=="center"){LeftPosition=(screen.width)?(screen.width-w)/2:100;TopPosition=(screen.height)?((screen.height-h)-20)/2:100;}
else if((pos!="center" && pos!="random") || pos==null){LeftPosition=xpos;TopPosition=ypos}
settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
winHM=window.open(mypage,myname,settings);
if(winHM.focus){winHM.focus();}}

//Disable Right Mouse Click
document.oncontextmenu=function() { return false; }


//-->
