var str_site_directory_translated
var str_site_directory_relative

function setSiteDirectory(translated, relative){
	str_site_directory_translated = translated
	str_site_directory_relative = relative
	//alert(str_site_directory_translated)
}

function viewLargeImage(url){
	var image_window = null;
	//alert(str_site_directory_relative+"pages/large_image.asp?img="+url)
	eval("image_window = window.open('"+str_site_directory_relative+"pages/large_image.asp?img="+url+"','Resurrecturis', 'left=0, top=0, width=640, height=480, resizable=no, scrollbars=no, menubar=no, status=no')")
	image_window.focus();
}

function openNewWindow(url){
	eval("window.open('"+url+"','new_window')")
}
//Changes the background color of a cell
function changeCellColor(id){
	eval("document.getElementById('"+ id +"').style.backgroundColor='999999'");
}
function resetCellColor(id){
	eval("document.getElementById('"+ id +"').style.backgroundColor=''");
}

