//pre-load over image for nav
image1 = new Image();
image1.src = "/common/images/header/home_over.gif";

//pop-up functions
function ImagePopUp(img){
  photo1=new Image();
  photo1.src=(img);
  Control(img);
}
function Control(img){
  if((photo1.width!=0)&&(photo1.height!=0)){
	viewPhoto(img);
  }
  else{
	normal="Control('"+img+"')";
	interval=setTimeout(normal,10);
  }
}
function viewPhoto(img){
  wide=photo1.width+20;
  high=photo1.height+25;
  string="width="+wide+",height="+high;
  window.open(img,"popup",string);
}

function openAvailWindow(theURL,winName,features) { 
	window.open(theURL,winName,features);
}
