function wPop(theLink,winName,wWidth,wHeight,scrll)
{
	var scrollB = scrll ? scrll : 'no';
	if(scrollB=='yes')
	{
		wWidth=parseInt(wWidth)+20;
	}
	var iMyWidth;
	var iMyHeight;
	wHeight=wHeight+12;
	iMyWidth = (window.screen.width/2)-(wWidth/2+10);
	iMyHeight=(window.screen.height/2)-(wHeight/2+15);
	var url = ( theLink.href ) ? theLink.href : theLink;
	var zWin=window.open(url,winName,"width="+wWidth+",height="+wHeight+",left="+iMyWidth+",top="+iMyHeight+",screenX="+iMyWidth+",screenY="+iMyHeight+",status=no,toolbar=no,location=no,directories=no,menubar=no,resizable=yes,scrollbars="+scrollB);
	zWin.focus();
    return false;
}

