// JavaScript Document
function abreVentana(urlVentana, height, width, sName){
	
  scrollbars = 'scrollbars=yes,';
  sFeatures = 'left=0,'
            + 'location=no,'
            + 'menubar=no,'
            + 'resizable=yes,'
            + scrollbars
            + 'status=no,'
            + 'titlebar=no,'
		    + 'title="album",'
            + 'toolbar=no,'
            + 'top=60,'
            + 'width='   + width
            + ',height=' + height;
  ventana = window.open(urlVentana, sName, sFeatures);
  ventana.focus();
}

function noSpam(user,domain) {
	locationstring = "mailto:" + user + "@" + domain;
	window.location = locationstring;
	}

