// JavaScript Document
function win(url, height, width)
{
	var nLeftPos;
	var nTopPos;
	nLeftPos = ( screen.width / 2 ) - ( width / 2 );
	nTopPos	 = ( screen.height /2 ) - ( height / 2 );
	
	var my_win = window.open(url, "my_win", 'location=no,status=0,menubar=0,width='+width+',height='+height+',scrollbars=yes,left='+nLeftPos+',top='+nTopPos);
	my_win.focus();
}

function linkTo(u, d)	{
	location.href='mailto:'+ u + '@' + d;
}