function ajaxFunction(form_location, container){	var ajaxRequest;		try{		ajaxRequest = new XMLHttpRequest();	} catch (e){		try{			ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");		} catch (e) {			try{				ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");			} catch (e){				alert("Your browser broke!");			return false;			}		}	}		ajaxRequest.onreadystatechange = function(){				if(ajaxRequest.readyState < 4){			var ajaxDisplay = document.getElementById(container);			 			ajaxDisplay.innerHTML = '<div class="loader"><img src="gfx/loading.gif" alt="Loading" /></div>';		}			if(ajaxRequest.readyState == 4){						if(ajaxRequest.status==200){				var ajaxDisplay = document.getElementById(container);				ajaxDisplay.innerHTML = ajaxRequest.responseText;			}			else{				//var ajaxDisplay = document.getElementById('ajaxDiv');				//ajaxDisplay.innerHTML = ajaxRequest.responseText;								ajaxDisplay.innerHTML = '<div class="loader"><img src="gfx/loading.gif" alt="Posting..." /></div>';							}								}	}		//var mid = document.getElementById('id_producenta').value;	//var queryString = "?id_producenta=" + mid;	var queryString = "";	ajaxRequest.open("GET", form_location + queryString, true);		ajaxRequest.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded; charset=UTF-8');	        	ajaxRequest.send(null);}function set_region_tbl(country_id, region_id, region_alt){		//alert(country_id);	//alert(document.getElementById(country_id).value)	if(document.getElementById(country_id).value=='Polska'){ 		document.getElementById(region_id).style.display='inline';		document.getElementById(region_alt).style.display='none'; 	}	else{ 		document.getElementById(region_id).style.display='none';		document.getElementById(region_alt).style.display='inline'; 	}}//POP-UP-ZDJECIA////////////////////////////////////////////////////////////////////////function ImgWinOpen(file,title,w,h){     look='';     sbars = 0;     resize = 0;     if(w > screen.availWidth)     {     		w = screen.availWidth-30;     		sbars = 1;     		resize = 1;     }     if(h > screen.availHeight)     {     		h = screen.availHeight-60;     		sbars = 1;     		resize = 1;     }     	  look = 'scrollbars='+sbars+', resizable='+resize+', width='+w+',height='+h+'';     newWin = window.open(file,'newWindow','toolbar=0,location=0,'+look);	  newWin.document.write("<html><head><title>"+title+"</title></head>");	  newWin.document.write("<body leftmargin=0 rightmargin=0 topmargin=0 bottommargin=0 marginwidth=0 marginheight=0 margin=0 onClick='window.close();' style='cursor:pointer;'><img src=" +file+ " / alt='Kliknij, aby zamknąć okno'>");	  newWin.document.write("</body></html>");	 }function display_block(T,t){ T.style.display=t?'block':'none'}
