function popitupbig(url, height, width)
{
var dimString = "'" + "height=" + height + ",width=" + width + ",resizable=yes,scrollbars=1" + "'"
newwindow=window.open(url,'name',dimString);
if (window.focus) {newwindow.focus()}
return false;
}

