var domain ="mycomhub.com";
var at = "@";
var point = ".";

function realMailAddressII(name,surname)
{
	document.write("<a href='mailto:" + name + point + surname + at + domain +"' class='mail'>" + name + point + surname + at + domain + "</a>" ) ;
}

function realMailAddress(name)
{
	document.write("<a href='mailto:" + name + at + domain +"' class='mail'>" + name + at + domain + "</a>" ) ;
}

function realMailAddressOptional(name,optional,label)
{
	document.write('<a href="mailto:' + name + at + domain + optional + '" class="mail">' + label + '</a>' ) ;
}

function labelMailAddress(name)
{
	document.write( name + at + domain ) ;
}

function getfocus(anchor){		
	//alert(anchor);
	if (document.getElementById(anchor)!=null){
		document.getElementById(anchor).focus();
		document.getElementById(anchor).scrollIntoView(true);
	}
}

