function MM_openBrWindow(theURL,winName,windowWidth,windowHeight) { //v2.0
var w;
 openURL = "pic.htm?theURL=" + theURL;
 w=window.open(openURL, winName, "width=" + windowWidth + ",height=" + windowHeight);
 w.resizeTo(windowWidth,windowHeight);
 w.focus();
 self.event.returnValue=false;
}


