<!-- DREAMWEAVER POPUP FUNCTIONS
var popUpWin 	= 0;
var win			=	null;

function popUpWindow(URLStr, left, top, width, height)
{
  	if(popUpWin)
  	{
  		if(!popUpWin.closed) popUpWin.close();
  	}
  	popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}


function NewWindow(mypage,myname,w,h,scrollbar) {
	
	LeftPosition	=(screen.width)	?	(screen.width-w)/2	:100;
	TopPosition		=(screen.height)?	(screen.height-h)/2	:100;

	settings='width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scrollbar+',location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes';
	
	win=window.open(mypage,myname,settings);

}
// -->


