//////////////////////////////////////////////////////////////
// SWF
//////////////////////////////////////////////////////////////

function ld(theurl) {

  document.getElementById("url").href = theurl;
  document.getElementById("url").click();

}


//////////////////////////////////////////////////////////////
// IFRAME
//////////////////////////////////////////////////////////////

function carrega(url) {

  document.getElementById('contingut').height = 0;	
  document.getElementById('carregador').height = 150;	
  contingut.location.href = url + ".php";

}

function calculaAlt() {

  document.getElementById('contingut').height = 0;
  document.getElementById('carregador').height = 0;
  document.getElementById('contingut').height = document.getElementById('contingut').contentWindow.document.body.scrollHeight;

}


//////////////////////////////////////////////////////////////
// OBRA FOTO
//////////////////////////////////////////////////////////////

function obraFoto(urlFoto,ample,alt) {

	addUrl = 'foto.php?urlFoto=' + urlFoto;

	px = (screen.width - ample) / 2;
	py = (screen.height - alt) / 2;

	window.open(addUrl,'foto','scrollbars=no,toolbar=0,location=0,directories=0,status=0,menubar=0,resizable=0,width='+ample+',height='+alt+',left='+px+',top='+py);

}
