<!--
var name = "steve";
var name2 = "elicia";
var name3 = "stelicia";
var address = "steveandelicia.com";
var link = "E-mail";
function steve() {
document.write('<a href=mailto:' + name + '@' + address + '>');
}
function elicia() {
document.write('<a href=mailto:' + name2 + '@' + address + '>');
}function stelicia() {
document.write('<a href=mailto:' + name3 + '@' + address + '>');
}

function stelicia2() {
document.write(name3 + '@' + address);
}
   function PopupPic(sPicURL) {     window.open( "../popup.asp?"+sPicURL, "",       "resizable=1,HEIGHT=400,WIDTH=400");   }
-->