function getJiggy(URL,pageTitle,w,h)
{
LeftPosition = (screen.width) ? (screen.width - w) / 2 : 0;
TopPosition = (screen.height) ? (screen.height - h) / 2 : 0;
descr='scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=' + w + ',height=' + h + ', top=' + TopPosition + ',left=' + LeftPosition + ',toolbar=0';
eval("jiggyWd = window.open(URL,pageTitle,descr);");
}

function getJiggier(URL,pageTitle,w,h)
{
LeftPosition = (screen.width) ? (screen.width - w) / 2 : 0;
TopPosition = (screen.height) ? (screen.height - h) / 2 : 0;
descr='scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=' + w + ',height=' + h + ', top=' + TopPosition + ',left=' + LeftPosition + ',toolbar=0';
eval("jiggyWd = window.open(URL,pageTitle,descr);");
}
