// (c) - ESDRA.net
// =================================
// webmaster
// http://www.esdra.net
//
function SetLinkBorder(strTdId, fIsHover) {
	if (!document.getElementById || 'undefined' == typeof(document.getElementById))
	    return;

	var tdCell = document.getElementById(strTdId);
	if ('undefined' == typeof(tdCell) || null == tdCell || 'undefined' == typeof(tdCell.className))
	    return;

	if (fIsHover)
		tdCell.className = 'TopLinkHover';
	else
		tdCell.className = 'TopLink';
}

function SetLinkBorderCup(strTdId, fIsHover) {
	if (!document.getElementById || 'undefined' == typeof(document.getElementById))
	    return;

	var tdCell = document.getElementById(strTdId);
	if ('undefined' == typeof(tdCell) || null == tdCell || 'undefined' == typeof(tdCell.className))
	    return;

	if (fIsHover)
		tdCell.className = 'CupLinkHover';
	else
		tdCell.className = 'CupLink';
}


function mailsend(mail,p1,p2,p3) { 
// <a href="mailto:hidden.com" onClick="mailsend(this,'net','xxxxx','esdra');">E-Mail</a>

var ca; 
ca = "mailto:" + p2 + "\@" + p3 + "." + p1; 
mail.href = ca; 
return (1); 
} 

function twomailsend(mail,p1,p2,p3,p4,p5,p6) { 
// <a href="mailto:hidden.com" onClick="mailsend(this,'net','xxxxx','esdra');">E-Mail</a>

var ca; 
ca = "mailto:" + p2 + "\@" + p3 + "." + p1 + ";" + p5 + "\@" + p6 + "." + p4; 
mail.href = ca; 
return (1); 
} 

function mailsend2(mail,p1,p2,p3) { 
// <a href="mailto:hidden.com" onClick="mailsend(this,'net','xxxxx','esdra');">E-Mail</a>
var ca; 
ca = "location.href=mailto:" + p2 + "\@" + p3 + "." + p1; 
return (ca); 
} 
