function openImage(image,title) {
	window.open("/popup/"+image+"?title="+title, "popupimage", "scrollbars=0, resizable=1, width=520, height=450").focus();
}

function changeImage(big, popup, title) {
	a=document.getElementById('imghref')
	imghref.href="javascript:openImage('"+popup+"','"+title+"');";
	imghref.childNodes(0).src=big;
}
 
function Preload() {
	b=Preload.arguments; 
	preload_images = new Array();
	for(i=0; i<b.length; i++) {
		preload_image = new Image;
		preload_image.src=b[i];
		preload_images[i]=preload_image;
	}
}

function openPopup(src) {
	window.open(src, "popupclient", "scrollbars=0, resizable=1, width=496, height=450").focus();
}

function mailHref(name,domain) {
	window.location='mailto:'+name+'@'+domain;
}

function mailTitle(name,domain) {
	document.write(name+'@'+domain);
}
