// JavaScript Document

//<![CDATA[
function toggle(el) {
	var div = document.getElementById(el);
	div.style.display = (div.style.display == "none") ? "" : "none";
	return false;
}
function popWindow(el,id) {
	el.blur();
	var elWindow = window.open("client_screenshots.asp?ClientID="+id, "Clients", "width=800,height=475,scrollbars=no,resizable=no,status=no");
	elWindow.focus();
	return false;
}
//]]>