/**
 * JavaScript functions for domaqua.ru electronic shop.
 * this functions utilize Subsys_JsHttpRequest_Js
 * @package domaqua.ru
 */

function dk_JsHttpRequest_foto(elem, id, dir, path){
	
	var req = new Subsys_JsHttpRequest_Js();
	req.onreadystatechange = function() {
		
		if (req.readyState == 4) {
			var text = req.responseJS.text;
			var text_new = req.responseJS.text_new;
			
			//alert(text_new);
			var bl = document.getElementById(id);
			//alert(elem.innerHTML);	
			bl.innerHTML = text;
			var main_ul=document.getElementById('gallery');
			
			//var li=main_ul.getElementsByTagName('LI');
			
			var l=elem.parentNode;
			
			var ul=l.getElementsByTagName('UL');
			if (ul[0].style.display=='none') {
				ul[0].style.display='block';
				elem.style.borderColor="#f8963d";
				elem.style.color="#f8963d";
				if (l.parentNode!=main_ul) {
					elem.style.fontWeight="bold";
					l.style.background="url("+siteURL+"/img/gar2.gif) left 0.2em no-repeat";
				}
				
			}
			else {
				ul[0].style.display='none';
				elem.style.borderColor="#000";
				elem.style.color="#000";
				if (l.parentNode!=main_ul) {
					elem.style.fontWeight="bold";
					elem.style.color="#28517f";
					elem.style.borderColor="#28517f";
					elem.style.fontWeight="normal";
					l.style.background="url("+siteURL+"/img/gar.gif) left 7px no-repeat";
				}
			}
		}
	}
	
	req.caching = false;
    file = siteURL+'/photo_JsHttpRequest.php';
   
    req.open('GET', file, true);
    req.send({ id: id, dir: dir, path: path });
}