rollEmail = new Array()
rollEmail[0] = new Image(265,13) 
rollEmail[0].src = "../img/email_address_plain.gif" 
rollEmail[1] = new Image(265,13)
rollEmail[1].src = "../img/email_address_uline.gif"
function SwapOut()
	{
    document.getElementById('roll_email').src = rollEmail[1].src;
    return true;
	}
function SwapBack()
	{
    document.getElementById('roll_email').src = rollEmail[0].src; 
    return true;
	}