function em(dom,us) 
{
		h='<a ';
		k='href="';
		l='mailto:';
		m='">';
		i='@';
		j='<\/a>';			
		document.write(h+k+l+us+i+dom+m+us+i+dom+j);
}
		
function winOpen(URL, windowName, width, height, scrollbars){
	var windowFeatures;
	windowFeatures = '';
	if (width != '' && width != null){
		windowFeatures = windowFeatures+'width='+width+',';
	}
	if (height != '' && height != null){
		windowFeatures = windowFeatures+'height='+height+',';
	}
	if (scrollbars){
		windowFeatures = windowFeatures+'scrollbars,';
	}
	window.open(URL, windowName, windowFeatures);
	
	
	
}
