function cambiamail (buzon) {
	var res = "";
	for (var n = 0; n < buzon.length; n++) res += String.fromCharCode(buzon.charCodeAt(n));
	if (res.indexOf('@') < 0) res = res + '@' + 'parapente.net';
	location = "mail" + "to:" + res;
}

function openWndZooms (zoom) { 
    openWndGeneral('/zooms.jsp?z='+zoom,'ampliacion','scrollbars=yes,width=400,height=400, resizable=yes'); 
}

function openWndGeneral (paginaweb, nombrewnd, propiewnd) {
    remote = window.open(paginaweb,nombrewnd,propiewnd);
    if (remote != null) {
        if (remote.opener == null) remote.opener=self;
        remote.focus();
    }
}

function openWndMarkZooms (zoom1, zoom2) { 
    openWndGeneral('/mark/zooms.jsp?z1='+zoom1+'&z2='+zoom2,'marketimages','scrollbars=yes,width=400,height=400, resizable=yes'); 
}


function openWndCopyWright () { 
    openWndGeneral('/copywright.jsp','CopyWright','scrollbars=no,width=400,height=260, resizable=no'); 
}

