if (document.images) {
i2on = new Image();
i2on.src = "images/button_home_o.gif";
i2off = new Image();
i2off.src = "images/button_home.gif";
i3on = new Image();
i3on.src = "images/button_portfolio_o.gif";
i3off = new Image();
i3off.src = "images/button_portfolio.gif";
i4on = new Image();
i4on.src = "images/button_quote_o.gif";
i4off = new Image();
i4off.src = "images/button_quote.gif";
i5on = new Image();
i5on.src = "images/button_cu_o.gif";
i5off = new Image();
i5off.src = "images/button_cu.gif";
}

/*/
/ / This function will change the src property of element
/ / to match the src property of the image in the DOM.
/ / Returns true or false depending on success.
/*/
function swapImg(element, image)
{
  // only if there are images defined in the DOM
  if (document.images)
  {
    eval("document." + element + ".src = \"" + image.src + "\";");
    return true;
  }
  else
    return false;
}

//document.MM_swapImgData = swapArray; //used for restore
//Form "from field" Modifier
function setfrom(form) {
	document.something.from.value = document.something.Email.value
	
}

function open_popup1(URL){
aWindow = window.open(URL,"pics","toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resize=yes,menubar=yes,width=425,height=360,top=75,left=300");
}

function open_popup2(URL){
aWindow = window.open(URL,"pics","toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resize=yes,menubar=yes,width=425,height=560,top=75,left=300");
}