// JavaScript Document

function show(id){
	el = document.getElementById(id);
	el.style.display = 'inline';
}
function hide(id){
	el = document.getElementById(id);
	el.style.display = 'none';
}
function toggle(id){
	el = document.getElementById(id);
	//alert(el.style.display);
	if (el.style.display=='none' || el.style.display==''){
		show(id);
	} else {
		hide(id);
	}
}
function popWindow(path, pwidth, pheight) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open('" + path + "', '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width="+pwidth+",height="+pheight+",left = 100,top = 100');");
}

function popImage(imgpath, pwidth, pheight) {
	day = new Date();
	id = day.getTime();
	eval("page" + id + " = window.open('viewPhoto.php?image=" + imgpath + "', '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width="+pwidth+",height="+pheight+",left = 100,top = 100');");
}

