/*---------------------------Start of new browser window pop up Script------------------------------*/		
/*---------------------------(BW:19/03/02)----------------------------------------------------------------*/

/*This function opens a new Browser window with the properties passed in as parameters*/
function popupWin(url,width,height){
	var x,y;
	var strFormat;
	x = (screen.width-width)/2;
	y=(screen.height-height)/2;
	strFormat = 'width='+width+',height='+height+',status=yes,location=no,menubar=no,titlebar=no,resizable=yes,scrollbars=1,dependent=yes,alwaysRaised=yes,';
	strFormat += 'toolbar=yes,top='+y+',left='+x;
	window.open(url,'FasArticle',strFormat).focus();
}
