function popup(remotelink, windowname)
{
	if (! window.focus)return true;
	var href;
	if (typeof(remotelink) == 'string')
		href=remotelink;
	else
		href=remotelink.href;

	window.open(href, windowname, '');
	return false;
}

function mailadr(text, name1, name2, domain1, domain2, ext)
{
			emailA=(name1+name2)
			emailB=('@')
			emailC=(domain1+domain2+'.')
			emailD=(ext)
			document.write('<A href=\"mailto:' + emailA+emailB+emailC+emailD + '\">' + '<span style=\"text-decoration: none ! important\" class=\"s1\">'+ text + '</span></a>');
}

function hov(item,c)
{
	if(item.className)
		item.className=c;
}


