// JavaScript Document

function highlightId(which, state) {
if (state==true) {
document.getElementById(which).style.backgroundColor="#edf3fe"; 
} else if(state==false) {
document.getElementById(which).style.backgroundColor="#FFFFFF"; 
}
}
function enlargeImg(file, title) {

	//var title="blank";
	file ="images/"+file;
	OpenWindow=window.open("", "newwin", "height=500, width=570,toolbar=no,scrollbars=no,menubar=no");
	OpenWindow.document.write("<HTML><HEAD><TITLE>"+title+"</TITLE><link rel=\"stylesheet\" href=\"css/enlarge.css\" /><BODY>");
	OpenWindow.document.write("<center><h1>"+title+"</h1>");
	OpenWindow.document.write("<img border=\"1\" class='boxes' src="+file+" />");
	OpenWindow.document.write("<div align=\"center\"><h3><a href=\"javascript:window.close();\">Close Window</a></h1></div>");
	OpenWindow.document.write("</center></BODY>");
	OpenWindow.document.write("</HTML>");
	OpenWindow.document.close();
	self.name="main";

}
