function insertEmail (email,text) {
	document.write("<a href=\"mailto:"+email+"\">"+text+"</a>");
}

function ShowImage(filename,direction) {
	var Height=470;
	var Width=600;
	if(direction=="Vertical"){
		Height=620;
		Width=450;
	}
	window.open("imagewindow.aspx?filename="+filename,"Window","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+Width+",height="+Height);
}

function imgOver(obj)
{
    obj.style.borderColor = 'white';
}

function imgOut(obj)
{
    obj.style.borderColor = '#d3d3d3';
}
