/*****************************
 Image functions - JavaScript
 AUTHOR: Radim Rojicek
 VERSION: 1.0
 (c) 2002
*****************************/

function openWindow(left, width, height) {
// Opens Window Photo
// left: x position
// width/height: size
  window.open("","Window",'left='+left+',width='+width+',height='+height+',toolbar=0,location=0,scrollbars=1,resizable=1');
} //openWindow()

