// JavaScript Document
function showPic(pic, h, w){
	ventana=window.open("/Interfaces/showPicPopUp.php?imagen="+pic+"&h="+h+"&w="+w, 'popUpPic', 'toolbar=no, width=100,height=100');
	ventana.focus();
}

function resizeMe(h, w){
	window.resizeTo(h, w);
}