
function openPopUp(strURL, pixW, pixH) 
{
	var sWinProps = "resizable=yes,scrollbars=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,width=" + pixW + ",height=" + pixH + ",top=" + (screen.availWidth - 425)/2 + ",left=" + (screen.availHeight - 325)/2;	
	window.open(strURL, "FaqWin", sWinProps);
}

function resize()
{
  var obj = document.getElementById('photo');
  var w = obj.width + 40;
  var h = obj.height + 100;
  if(w > 800)
    w = 800;    
  if(h > 800)
    h = 800;
  window.resizeTo(w,h);
}

function center()
{
  var x = (screen.availWidth - document.body.clientWidth) / 2;
  var y = (screen.availHeight - document.body.clientHeight) / 2;
  window.moveTo(x,y);
}
