function GoURL(pID,pURL,pTarget,pFeatures, pHeight, pWidth)
{
	var xTop, xLeft, xWidth, xHeight, winNW;
	
	if (pURL!='')
	{
	  if (pTarget=='')
	  {
		  top.window.location.href = pURL;
		}
	  else
	  {
		  if (pFeatures!='')
		  {
        xWidth = pWidth;
        xHeight = pHeight;
        xTop = (screen.height - xHeight) / 2;
        xLeft = (screen.width - xWidth) / 2;
        winNW = window.open(pURL, pID, pFeatures + ',width=' + xWidth + ',height=' + xHeight + ',top=' + xTop + ',left=' + xLeft); 
        winNW.focus();
		  }
		  else
		  {
		  	
		  	if (pWidth==0) {pWidth = screen.width};
		  	if (pHeight==0) {pHeight = screen.height};
		
        xWidth = pWidth;
        xHeight = pHeight;
        xTop = (screen.height - xHeight) / 2;
        xLeft = (screen.width - xWidth) / 2;
        winNW = window.open(pURL, pID,'status=1,toolbar=1,location=1,menubar=1,directories=1,resizable=1,scrollbars=1,width=' + xWidth + ',height=' + xHeight + ',top=' + xTop + ',left=' + xLeft);
        winNW.focus();
		  }
	  }
  }
};

