function popWindow(outputURL,width,height)
{
var newWindow;
var windowName;
var features;

windowName = "Popup";
features = "'scrollbars=yes,statusbar=no,menubar=no,HEIGHT="+height+",WIDTH="+width+"'";

newWindow = window.open(outputURL,windowName,features);
newWindow.focus();
}

function picturePopup(outputURL)
{
var newWindow;
var windowName;
var features;
var height;
var width;

height="500";
width="660";
windowName = "Picture";
features = "'scrollbars=no,statusbar=no,menubar=no,HEIGHT="+height+",WIDTH="+width+"'";

newWindow = window.open(outputURL,windowName,features);
newWindow.focus();
}