
//<!--

//=====================================================================||//						MyPopUp module	                          							   ||
//=====================================================================||

function Foto(img,MyTitle){
  foto1= new Image();
  foto1.src=(img);
  Control(img,MyTitle);
}

function Control(img,MyTitle){
  if((foto1.width!=0)&&(foto1.height!=0)){
    viewFoto(img,MyTitle); 	
  }
  else{
    func="Control('"+img+"','"+MyTitle+"')";
    interval=setTimeout(func,500);
  }
}

function viewFoto(img,MyTitle){
  if (MyTitle == "")
    MyCommand='PopUp.document.title="Images from Master Plan"';
  else
	MyCommand='PopUp.document.title="' + MyTitle + '"';
  pwidth=foto1.width+20;
  pheight=foto1.height+20;
  coordinates="width="+pwidth+",height="+pheight;
  PopUp=window.open(foto1.src,'_blank',coordinates);
  CheckDocExistance(MyTitle);
}
//
function CheckDocExistance(MyTitle){	if (!PopUp.document)
	{		return;
	}
    
	if (PopUp.document.title != MyTitle)
	{
	  try {
		PopUp.document.title=MyTitle;      }
	  catch(e) {
		if (e instanceof Error) {
			CheckDocExistance(MyTitle);
		}
	  }
	  finally {return;}	}}//=====================================================================||
//              END OF FUNCTION'S MODULE                               ||//=====================================================================||
//-->