// JavaScript Document
function redirectOutput(myForm) {
	
var w = window.open('about:blank','Popup_Window','width=400,height=550,left=0,top=100,screenX=0,screenY=100');
myForm.target = 'Popup_Window';
return true;
}
suveyselect = 0;
	function initsearch(ssss){

		ss = document.getElementById("q").value;
		sss = document.getElementById("cat").value;
		window.location = ssss+"search.php?q="+ss+"&cat="+sss;
		
		}
		
function setsurvey(id,ss){
document.getElementById('surv').style.display = 'none';
}

function rater(ss){
	
window.tar.location.href = ss;

document.getElementById('ratetable').style.display = 'none';
	}
	
	function textCounter(field,counter,maxlimit,linecounter) {
	// text width//
	var fieldWidth =  parseInt(field.offsetWidth);
	var charcnt = field.value.length;        

	// trim the extra text
	if (charcnt > maxlimit) { 
		field.value = field.value.substring(0, maxlimit);
	}

	else { 
	// progress bar percentage
	var percentage = parseInt(100 - (( maxlimit - charcnt) * 100)/maxlimit) ;
	document.getElementById(counter).style.width =  parseInt((fieldWidth*percentage)/100)+"px";
	document.getElementById(counter).innerHTML=" &nbsp; تعبئة:   "+percentage+"%"
	// color correction on style from CCFFF -> CC0000
	setcolor(document.getElementById(counter),percentage,"background-color");
	}
}