// Image Mouse-Over
function picChange(id, url, newW, newH){
	var id = document.getElementById(id);
	id.src=url;
	id.style.width=newW;
	id.style.height=newH;
}


// Popup Window
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');
}


// Centered Popup
var win = null;
function NewWindow(mypage,myname,w,h,scroll){
   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='+scroll+',resizable';
   win = window.open(mypage,myname,settings);
}


// 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);
}