<!--
  
function window_open(url,sizex,sizey,r,scrollb)
{
	var r,titlepage,scrollb;
	if (!scrollb) scrollb=0;
	window.open (url, r, 'Toolbar=0, Titlebar=0, Location=0, Directories=0, Status=0, Menubar=0, Scrollbars='+scrollb+', Resizable=0, Copyhistory=1, width='+sizex+',height='+sizey);
}


function mail_address(user,domain,zone) {
document.write(user+'@'+domain+'.'+zone);
}

function mail_send(user,domain,zone) {
document.location.href = 'mailto:'+user+'@'+domain+'.'+zone;
}



/// Menu
function menu_on(num)
{
	if (document.getElementById('sm' + num)) document.getElementById('sm' + num).className = 'pop';
	if (document.getElementById('sm' + num + 'go')) document.getElementById('sm' + num + 'go').className = 'go';
}
function menu_off(num)
{
	if (document.getElementById('sm' + num)) document.getElementById('sm' + num).className = 'go';
	if (document.getElementById('sm' + num + 'go')) document.getElementById('sm' + num + 'go').className = 'pop';
}

/// Menu End;

//-->

