//Open popup script 
//By
//Joseph Price
//28.12.2004



function openPopup(url, name, width, height, dimensions)
{
var newWindow
newWindow = window.open(url, name, 'width='+ width +', height='+ height +','+ dimensions +'');
newWindow.moveTo((screen.width/2)-(width/2), (screen.height/2)-(height/2));
newWindow.focus();
}
