/*_______________________________________________

navigation cell colors
_______________________________________________*/

function colorizeOn(list_id) {
	document.getElementById(list_id).style.backgroundColor="#f2fcff";
}

function colorizeOff(list_id) {
	document.getElementById(list_id).style.backgroundColor = "#f6f6f6";
}

/*_______________________________________________

antispam email links
_______________________________________________*/

function antispam(user,domain) {
	locationstring = "mailto:" + user + "@" + domain;
	window.location = locationstring;
}

/*_______________________________________________

for popup window generation
_______________________________________________*/


function NewWindow(URL) {
	LeftPosition = 0;
	TopPosition = 0;
	settings = 'top='+TopPosition+',left='+LeftPosition+',scrollbars='+'no'+',resizable';
	blarg = window.open(URL,'photo',settings);
}
	
/*_______________________________________________

to generate position:fixed windows (IE doesn't like them though)
_______________________________________________*/
	
	
function display(filename) {
	document.getElementById("large_image").src = filename;
	document.getElementById("boxx").style.display = "block";
}	

function hide() {
	document.getElementById("boxx").style.display = "none";
	document.getElementById("large_image").src = "images/loading.gif";
}