function feedback(path){
    a=open(path, 'FeedBack', 'width=700,height=540,screenX=0,screenY=0,resizable=0,scrollbars=1')
    return false;
}

function showBig(name,x,y) {
  big = open("","big","width="+x+",height="+y+",screenX=0,screenY=0,resizable=0")
  big.document.open();
  big.document.writeln('<html><head><title>&nbsp;</title></head>');
  big.document.writeln("<body marginHeight=0 marginWidth=0 topMargin=0 leftMargin=0><img name='foto' src='' width="+x+" height="+y+" alt=''>");
  big.document.foto.src=name;
  big.document.close();
}


function showHelp(id, w, h){
	arr = open("/help.php4?id="+id, "wndHelp", 'width='+w+',height='+h+',screenX=0,screenY=0,resizable=0,scrollbars=1');
}

function on(imgName, imgObj ){
	if( document.images ){
		document.images[imgName].src = eval( imgObj+".src" );
	}
}

function load( imgObj, imgSrc ){
	if( document.images ){
		eval( imgObj+' = new Image()' );
		eval( imgObj+'.src = "'+imgSrc+'"' );
	}
}