function iFrameHeight() {
	if(document.getElementById && !(document.all)) {
		h = document.getElementById('iframename').contentDocument.body.scrollHeight;
		document.getElementById('iframename').style.height = h+'px';
	}
	else if(document.getElementById) {
		h = document.frames('iframename').document.body.scrollHeight;
		document.all.iframename.style.height = h;
	}
}

function poPUP(URL,x,y) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=1,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=" + x + ",height=" + y + "');");
}

function popimage(image){
 	cuteLittleWindow = window.open('', "littleWindow", "location=0,scrollbars=auto,top=0,left=0,width=0,height=0");
  	cuteLittleWindow.document.write('<div style="position: absolute; width: 100%; height: 100%; z-index: 1; left:0px; top:0px"><table cellpadding="0" cellspacing="0" width="100%" height="100%"><tr><td align="center"><img title="Cerrar ventana" id="IMG" onclick="window.close();" onload="window.resizeTo(this.width,this.height+80);" src="'+image+'"><\/td><\/tr><\/table><\/div>');
}