// JavaScript Document


var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=530,width=650,location=no');
	if (window.focus) {newwindow.focus()}
	newwindow.moveTo(300,100);
}

function poptastic1(url)
{
	newwindow=window.open(url,'name','height=530,width=700,location=no');
	if (window.focus) {newwindow.focus()}
	newwindow.moveTo(300,100);
}

function poptastic2(url)
{
	newwindow=window.open(url,'name','height=455,width=700,location=no');
	if (window.focus) {newwindow.focus()}
	newwindow.moveTo(300,100);
}



function MakeLink()

{
    varID = "contact";

    myElem = document.getElementById(varID);
    var arr = myElem.href.split('#');

    var emailAddress = varID + '@' + arr[arr.length-1];

    myElem.href = 'mailto:' + emailAddress;
}


function MakeLinkEmail1()

{
    varID = "john";

    myElem = document.getElementById(varID);
    var arr = myElem.href.split('#');

    var emailAddress = varID + '@' + arr[arr.length-1];

    myElem.href = 'mailto:' + emailAddress;
}


function MakeLinkEmail2()

{
    varID = "jorge";

    myElem = document.getElementById(varID);
    var arr = myElem.href.split('#');

    var emailAddress = varID + '@' + arr[arr.length-1];

    myElem.href = 'mailto:' + emailAddress;
}

