// W3C Compatable New Window (replaces target="_blank")
function targetBlank(url) {
   blankWin = window.open(url,'_blank','menubar=yes,toolbar=yes,location=yes,directories=yes,fullscreen=no,titlebar=yes,hotkeys=yes,status=yes,scrollbars=yes,resizable=yes');
}

// Player Image Popup
function previewPhoto(img){
   photo1= new Image();
   photo1.src=(img);
   Control(img);
}
function Control(img){
   if((photo1.width!=0)&&(photo1.height!=0)){
      viewPhoto(img);
   }else{
      funz="Control('"+img+"')";
      inter=setTimeout(funz,20);
   }
}
function viewPhoto(img){
   width=photo1.width+20;
	height=photo1.height+20;
	LeftPosition = (screen.width) ? (screen.width-width)/2 : 0;
	TopPosition = (screen.height) ? (screen.height-height)/2 : 0;
	params="width="+width+",height="+height+",top="+TopPosition+",left="+LeftPosition+"";
	stra=window.open(img,"",params);
}