var fotoWin = null;

function launchWindow(page,x,y){
	if (fotoWin && !fotoWin.closed) {
		fotoWin.close();
	}
	fotoWin = window.open(page, "fotoWin", "width=" + x + ",height=" + y + ",scrollbars=no,toolbars=0,resizable=yes")
	fotoWin.focus()
}

