function showWinMail( URL )
{
	if(document.all){
		wWind = 550;
		hWind = 420+80;
		leftPos = (document.body.clientWidth - wWind) / 2;
		topPos = (document.body.clientHeight - hWind) / 2;
	}else{
		wWind = 475;
		hWind = 150+80;
		leftPos = (window.innerWidth - wWind) / 2;
		topPos = (window.innerHeight - hWind) / 2;
	}
			
	window.open( URL, 'message', 'width='+wWind+',height='+hWind+',status=yes,directories=no,location=no,menubar=no,toolbar=no,top='+topPos+',left='+leftPos+',titlebar=yes,resizable=yes,scrollbars=yes');
}


