// *******************************************************************

//

// Miguel Romero Web site Pop-up Window script

// Used to display large images from scenic designs in separate window

//

// Written by Thomas Zschocke (zschocke@educ.umass.edu)

// Copyright (c) 2002 Miguel Romero. All rights reserved.

//

// Main function: popwindow(href,winWidth,winHeight);

//

// *******************************************************************



function popupwindow(href,winWidth,winHeight) {

window.open(href,"Enlarged_Image","width="+winWidth+",height="+winHeight+",toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizeable=0,screenX=100,left=100,screenY=100,top=100");

}

