function SetHeight(){
	
  var winH; 
  if (typeof window.innerWidth != 'undefined'){winH = window.innerHeight;} 
  // IE6 in standards compliant mode (i.e. with a valid doctype as the first 
  // line in the document) 
  else if (typeof document.documentElement != 'undefined' 
                && typeof document.documentElement.clientWidth != 'undefined' 
                && document.documentElement.clientWidth != 0) 
  { 
        winH = document.documentElement.clientHeight;
  } 
  // older versions of IE 
  else{winH = document.getElementsByTagName('body')[0].clientHeight;} 
  

	var c_Co = document.getElementById("container");
	
	winH -= 47; //alert(winH);
	winH+="px";
	c_Co.style.height = winH; //alert(c_Co.style.height);
}

function WOpen(strUrl,strName,strFeatures){
	window.open(strUrl,strName,strFeatures);
}

function Seleziona(anno){
	location.replace(anno);
	//window.location.hash = anno;
}

function TopPage(){
  self.location.hash='top';
}
//------------------------------------------------------------

window.onresize = function(){

	w=window,d=document,e=d.documentElement,g=d.getElementsByTagName('body')[0],x=w.innerWidth||e.clientWidth||g.clientWidth,y=w.innerHeight||e.clientHeight||g.clientHeight; 
	
	var maxW = 1280;
	//var b = document.getElementsByTagName('body')[0];
	//var sW = screen.width; //alert(sW); return;
	//var sH = screen.height;
	if (x > maxW){
		x = maxW; //alert(x); return;
	  g.style.width = x + "px";
	}
	//else{b.style.width = "100%";}
	var obj = document.getElementById("container");
	y -= 54; //alert(y);
	y+="px"; //alert(y);
	obj.style.height = y;
}

function vai(aname){
//var yScroll = document.body.scrollTop;
//var xScroll = document.body.scrollLeft;
document.getElementById("atIF").src="foto_contenuto.htm#" + aname;
//self.scrollTo(xScroll, yScroll);
}
