function popUpWin(theURL,theName,theSize) 
{
  var arrayImpost = theSize.split("=");
  var winWidth = parseInt(arrayImpost[1]);
  var winHeight = parseInt(arrayImpost[2]);
  var screenWidth = ( screen.width - winWidth ) / 2;
  var screenHeight = ( screen.height - winHeight ) / 2;
  window.open(theURL,theName,theSize + ",screenX=" + screenWidth + ",screenY=" + screenHeight + ",left=" + screenWidth + ",top=" + screenHeight + ",location=no,status=no,directories=no,toolbar=no");
}

function viewOverlayDryPower() {
	$(document).ready(function() {
		jOverlay("/common/overlay/20090520overlay.swf");
	});
	return false;
}
