<!--
function popWin(theURL,winWidth,winHeight,showLocation,showMenu,scrollWin,resizeWin){
	var winX = (screen.width - winWidth) / 2;
	var winY = (screen.height - winHeight) / 2.6;
	windowAttributes= ('width='+winWidth+',height='+winHeight+'location='+'showLocation'+',menubar='+showMenu+',scrollbars='+scrollWin+",resizable="+resizeWin+",left="+winX+",top="+winY);
	window.open(theURL, "", windowAttributes);
}
function portfolio(version){
	popWin("portfolio.php?v="+version, "980", "500", "no", "no", "no", "yes");
}
// -->
