// JavaScript Document
function popupImage(image){
	w='400';
	h='300';
	image += 'm.jpg';
	var winl = (screen.width-w)/2;
	var wint = (screen.height-h)/2;
	var settings  ='height='+h+',';
	settings +='width='+w+',';
	settings +='top='+wint+',';
	settings +='left='+winl+',';
	settings +='resizable';
	win=window.open(image,'image',settings);
	if(parseInt(navigator.appVersion) >= 4){
		win.window.focus();
	}
}
function mailTo(name,domain){
	document.write('<a href=\"mailto:'+name+'@'+domain+'\">');
	document.write(name+'@'+domain+'</a>');
}
