

  <!--  hide from older browsers
  
  /*
  JAVASCRIPT
  Author: Chris Byrne
  URL: http://www.ddmi.com
  Email: cbyrne@ddmi.com
  Date: May 3, 2000
  Version 1.0
  Function: Open remote window, name it and give it focus if referenced by another link
  Notes: Used with the following link within the html <a href="javascript:openWindow('URLHere')"></a>
  Rev: 4/24/2002 - optional menubar param forces menubar=1 on window.open call. dave greenberg
  */
    


function openWindow(locationPath, winHeight, winWidth, menubar) { 
	if(winHeight == null){
		winHeight = 560;
	}
	if(winWidth == null){
		winWidth = 760;
	}
	if(menubar == 'menubar'){
		menubar = 1;
		}
	else {
		menubar = 0;
	}

	remote = window.open("","newwin",
	                "width="+winWidth+",height=" + winHeight +",menubar=" + menubar + "screenX=20,screenY=20,scrollbars=yes,resizable=yes");
	remote.location.href = locationPath;
	if (remote.opener == null)
	                remote.opener = window;
	remote.opener.name = "opener";
	remote.focus();
}		
				 
	function openHelpWindow(locationPath, winHeight, winWidth) { 
	if(winHeight == null){
		winHeight = 560;
	}
	if(winWidth == null){
		winWidth = 560;
	}
                 remoteHelp = window.open("","newHelpwin",
                                 "width="+winWidth+",height=" + winHeight +",screenX=20,screenY=20,scrollbars=yes,resizable=yes");
                 remoteHelp.location.href = locationPath;
                 if (remoteHelp.opener == null)
                                 remoteHelp.opener = window;
                 remoteHelp.opener.name = "opener";
				 remoteHelp.focus();
                 }	 

       
	function openFullWindow(url) 
	{
		portfoliowindow = 
		window.open(url,"win",'toolbar=1,location=1,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=760,height=560');
	}
 
    
    // end hiding script from older browsers -->
    
