function openWin( fileSrc, winWidth, winHeight ){
	//winWidth=540
	//winHeight=540
	window.open(fileSrc, '', 'height='+ winHeight + ',width='+ winWidth + ', menu=yes, toolbars=yes, scrollbars=yes' );
}

function sendmail (address) {
	address = address.split("*"); // Change the * to any string for better personalization
	address = address.join("@");
	window.open ('mailto:'+address,'null','width=100,height=100,scrollbars=no,resizable=no,toolbar=no,location=no,directories=no,status=no,copyhistory=no');
}
