window.onresize = function() 
{ 
	//window.location.reload(); 
} 

function PhotoPopUp( myId, myWidth, myHeight )
{
	window.open('photodetail.aspx?id='+myId,'filename','height='+myHeight+',width='+myWidth+',scrollbars=no');
}

function ChangeFriendlyIndex( myUrl )
{
	if( myUrl.length > 0 ) 
	{
		document.location = myUrl;
	}
}

function Show(soort)
{
	popup('domain_info.aspx?refreshquery='+Math.random() +'#'+soort,400,500);
}


function popup(filename,height,width)
{
	window.open(filename,'filename','height='+height+',width='+width +',scrollbars=yes');
}

function close_window() 
{
    window.close();
}

function CaricaFoto(img,imgnr)
{
  foto1= new Image();
  foto1.src=(img);
  Controlla(img,imgnr);
}

function Controlla(img,imgnr)
{
  if((foto1.width!=0)&&(foto1.height!=0))
  {
	viewFoto(img,foto1.width,foto1.height,imgnr);
  }
  else
  {
    viewFoto(img,400,300,imgnr);
  }
}

function viewFoto(img,width,height,imgnr)
{
  stringa="width="+width+",height="+height;
  finestra=window.open("blowup.aspx?imgnr="+imgnr+"&file="+img+"","blowup",stringa);
}