function mailnobot(nm,dm) {
   mailurl = "mailto:" + nm + "@" + dm;
   window.location = mailurl;
}

function pop(que)
{
window.open(que,'finestreta','resizable=1,status=1,toolbar=0,menubar=0,scrollbars=1,width=590,height=450,screenX='+(screen.width-605)+',screenY=0,left='+(screen.width-605)+',top=0');
}

function expandingWindow(website) {
var heightspeed = 10; // vertical scrolling speed (higher = slower)
var widthspeed = 7;  // horizontal scrolling speed (higher = slower)
var leftdist = 0;    // distance to left edge of window
var topdist = 0;     // distance to top edge of window
if (document.all) {
var winwidth = window.screen.availWidth - leftdist;
var winheight = window.screen.availHeight - topdist;
var sizer = window.open("","","left=" + leftdist + ",top=" + topdist + ",width=1,height=1,scrollbars=yes");
for (sizeheight = 1; sizeheight < winheight; sizeheight += heightspeed) {
sizer.resizeTo("1", sizeheight);
}
for (sizewidth = 1; sizewidth < winwidth; sizewidth += widthspeed) {
sizer.resizeTo(sizewidth, sizeheight);
}
sizer.location = website;
}
else
window.location = website;
}