function PopupPage(sPageURL, WW, HH) { 
	window.open(sPageURL, "", "resizable=no, height="+HH+", width="+WW+", directories=no, fullscreen=no, left=50, top=50, status=no, toolbar=no, menubar=no, location=no, scrollbars=yes");
}
function PopupPic(sPicURL) { 
	window.open("popup.htm?"+sPicURL, "", "resizable=no, height=100, width=100, directories=no, fullscreen=no, left=50, top=50, status=no, toolbar=no, menubar=no, location=no, scrollbars=no");
}
function Resize(ID,number) {
	document.getElementById(ID).height=number;
}
function Aviso(msg) {
	alert(msg);
}
function fitPic() {
	iWidth = (NS)?window.innerWidth:document.body.clientWidth;
	iHeight = (NS)?window.innerHeight:document.body.clientHeight;
	iWidth = document.images[0].width - iWidth;
	iHeight = document.images[0].height - iHeight;
	window.resizeBy(iWidth, iHeight-1);
	self.focus();
}
