/* author: orestes gonzalez */
/* Creation date: 13/11/2003 */
function swap(iname, gname) {
		
   			         	iname.src = gname.src;
						
}
function changePage(sUrl){

                 if(sUrl != "noUrl")
                    document.location.href = sUrl;
}

function newWindow(URL,dx,dy){
		 window.open(URL,'Ampliada','scrollbars=no, width='+dx+',height='+dy+',status=no,menubar=no,location=no,resizable=yes');
}

function ventana(URL,titulo,dx,dy){
		 window.open(URL,titulo,'scrollbars=yes, width='+dx+',height='+dy+',status=no,menubar=no,location=no,resizable=yes');
}

function openMenu(URL,titulo,dx,dy){
		 window.open(URL,titulo,'scrollbars=no, width='+dx+',height='+dy+',status=no,menubar=no,location=no,resizable=no');
}
