function framed(url,title) {
	var title ;
	var url ;
	var n = window.open('','myWindow','toolbar=yes, directories=no, location=no, status=no, menubar=yes, resizable=yes, scrollbars=yes,width=775, height=550, top=5');
	n.document.write('<html><head ><title>Hometown Mail Center | ' + title + '</title></head >');
	n.document.write('<frameset rows="0,*" frameborder="0" framespacing="0" border="0">');
	n.document.write('<frame src="about:blank" name="f1" noresize scrolling="no">');
	n.document.write('<frame src="' + url + '" name="f2">');
	n.document.write('</frameset></html>');
	n.document.close();
}


function email(address,domain,ext) {
	var ma = 'ma';
	var il = 'il';
	var to = 'to:';
	document.write('<a href="');
	document.write(ma+il+to);
	document.write(address);
	document.write('@');
	document.write(domain);
	document.write('.');
	document.write(ext); 
	document.write('"');  
	document.write('>'); 
	document.write(address);
	document.write('&#64;');
	document.write(domain);
	document.write('.');
	document.write(ext);  
	document.write('</a>');
}