// JavaScript Document
function openWindow(theURL,winName,features) {
	popup = window.open(theURL,winName,features);
	popup.focus();
}

function openProject(which) {
	openWindow('http://www.ackermann-partner.com/_scripts/project_popup.php?id='+which,'project','width=900,height=590,status=yes');
}