// JavaScript Document
// JavaScript Document


function popitup(url,w,h)
{
var newW = w + 100;
var newH = h + 100;
var left = (screen.width-newW)/2;
var top = (screen.height-newH)/2;
var newwindow = window.open(url, 'name', 'width='+newW+',height='+newH+',left='+left+',top='+top);
newwindow.resizeTo(newW, newH);

//this line will move the popup to the center of... NOT THE UNIVERSE...
newwindow.moveTo(left, top);

newwindow.focus();
return false;
}