// JavaScript Document
//error support
function error(error){
	alert(error);
}

function show_hide(divName) {
   if (document.getElementById) {
       obj=document.getElementById(divName)
   } else if (document.all) {
       obj=document.all[divName]
   }

   if (obj) {
       if (obj.style.display == "none") {
           obj.style.display = '';
       }
       else {
           obj.style.display = 'none';
       }
   }
}

function checkCount(field, field_left, max_char){
    if (field.value.length > max_char) {
        field.value = field.value.substring(0,max_char);
    }
	field_left.value = ( max_char - field.value.length);
}

function charCount() {
	checkCount(document.f.short_description_bg, document.f.short_desc_left_bg, 200);
	checkCount(document.f.description_bg, document.f.desc_left_bg, document.f.desc_left_bg.maxLength);
}

//reklamen tekst
function showMarque(){
	y = '<form method="post" action="addmarque.html" name="marq" id="marq" style="display:inline;"><input type="text" name="marque" id="marque" style="width:90%" value="'+marqueecontent+'" /><input type="submit" name="smb" value="OK" /></form>'
	document.getElementById('marq').innerHTML=y;
}


//redirektvane za vuvejdane na snimki sled vuvejdane na oferta
function addImg(x){
	if(confirm('Оферта '+ x +' е въведена / обновена!\r\nЖелаете ли да въведете снимки към нея?')){
		document.location='addimg_'+x+'.html';
	} else {
		document.location='addoffer.html';
	}
}


//Ajax functions
//change District via City
function changeDistrict(x, y){
	xajax_processDistrict(x, y);
	xajax.$('myDistrict').innerHTML = 'Loading...&nbsp;';
	return false;
}

function request(){
	xajax_processRequest(xajax.getFormValues("f"));
	return false;
}
