function showTabBox(id){ 
	var doit = false;
	var i=0;
	var boxArray = new Array(1);
	var tabArray = new Array(1);
	tabArray[0]="tab_JobSeeker";
	boxArray[0]="box_JobSeeker"; 

	tabArray[1]="tab_Recruiter";
	boxArray[1]="box_Recruiter"; 

	for (i=0; i<2; i++){
		if (i == id) {
			document.getElementById(tabArray[i]).className='selected';	
			document.getElementById(boxArray[i]).className='box_selected';
			document.getElementById(boxArray[i]).style.display='block';	
		}
		if (i != id) { 
			document.getElementById(tabArray[i]).className='';	
			document.getElementById(boxArray[i]).className='';
			document.getElementById(boxArray[i]).style.display='none';
		}
	}
}

function setEndDateOngoing(mode){
	if (mode=='Month'){
		if (document.getElementById('EndDateMonth').value=="99"){
			document.getElementById('EndDateYear').selectedIndex = 0;
		}
	}
	
	if (mode=='Year'){
		if (document.getElementById('EndDateYear').value=="99"){
			document.getElementById('EndDateMonth').selectedIndex = 0;
		}
	}
}

function popUp(page)
{
	strTarget = '/candidates/help.asp?page='+page;
	window.open(strTarget, '', config='width=400,height=400,resizable=1,scrollbars=1,status=no,location=0,menubar=0,directories=no,copyhistory=no');

}

function toggleBoxes(obj)
{
	if (document.getElementById(obj).style.display=="none")
	{
		document.getElementById(obj).style.display="block"; 
		document.getElementById('newWorkExpLabelBox').style.display="none";
	} 
	else
	{
		document.getElementById(obj).style.display="none";
		document.getElementById('newWorkExpLabelBox').style.display="block";
	}
}

function displayOther(val, element){
	if (val == "Other"){
		if (element=="EduName"){
			document.getElementById("box_EduOther").style.display="";
			document.getElementById("EduOther").focus();
		}
		else if (element=="ProfileSkill"){
			document.getElementById("box_Other").style.display="";
			document.getElementById("Other").focus();
		}
	}else{
		if (element=="EduName"){
			document.getElementById("box_EduOther").style.display="none";
		}
		else if (element=="ProfileSkill"){
			document.getElementById("box_Other").style.display="none";
		}
	}
}

function populateOther(val, dbVal, element){
	if (element=="EduName"){
		for (var i=0;i<document.getElementById("EduName").options.length;i++){
			//alert(document.getElementById("JobProfileName").options[i].value + "===" + dbVal)
			if (document.getElementById("EduName").options[i].value==dbVal){
				document.getElementById("EduName").selectedIndex = i;
				document.getElementById("box_EduOther").style.display="none";
				document.getElementById("EduOther").value=""; 
				break;
			}else{
				document.getElementById("EduName").selectedIndex = 54;
				document.getElementById("box_EduOther").style.display="";
				document.getElementById("EduOther").value=dbVal; 
			}
		}
	}
}
function editProfile(intID, section){
	if (section == "Education"){
		document.getElementById("txtEDUC_ID").value = intID;
		document.getElementById("frmEditProcess").action="/candidates/education.asp";
		document.getElementById("frmEditProcess").submit(true);
	}
	else if (section == "Work"){
		document.getElementById("txtWORK_ID").value = intID;
		document.getElementById("frmEditProcess").action="/candidates/work.asp";
		document.getElementById("frmEditProcess").submit(true);
	}
	else if (section == "Language"){
		document.getElementById("txtLANG_ID").value = intID;
		document.getElementById("frmEditProcess").action="/candidates/communication.asp";
		document.getElementById("frmEditProcess").submit(true);
	}
	else if (section == "JobProfile"){
		document.getElementById("txtJOBPROFILE_ID").value = intID;
		document.getElementById("frmEditProcess").action="/candidates/profile-skills.asp";
		document.getElementById("frmEditProcess").submit(true);
	}
	else if (section == "Link"){
		document.getElementById("txtLINK_ID").value = intID;
		document.getElementById("frmEditProcess").action="/candidates/links.asp";
		document.getElementById("frmEditProcess").submit(true);
	}
	
}

function populateSelectBox2(val, populateIn) {
	var selbox = document.getElementById(populateIn);
	
	selbox.options.length = 0;
	if (val == "Web Development") {
		selbox.options[selbox.options.length] = new Option('ASP Classic','1');
		selbox.options[selbox.options.length] = new Option('ASP.NET','2');
		selbox.options[selbox.options.length] = new Option('PHP','3');
		selbox.options[selbox.options.length] = new Option('JSP/Java','4');
		selbox.options[selbox.options.length] = new Option('ColdFusion','5');
		selbox.options[selbox.options.length] = new Option('Ruby on Rails','6');
		selbox.options[selbox.options.length] = new Option('XML/RSS','7');
		selbox.options[selbox.options.length] = new Option('Pearl','8');
		selbox.options[selbox.options.length] = new Option('C#','9');
		selbox.options[selbox.options.length] = new Option('Other','Other');
		
	}
	if (val == "Database") {
		selbox.options[selbox.options.length] = new Option('SQL Queries','10');
		selbox.options[selbox.options.length] = new Option('MS Access','11');
		selbox.options[selbox.options.length] = new Option('MS SQL Server','12');
		selbox.options[selbox.options.length] = new Option('MySQL','13');
		selbox.options[selbox.options.length] = new Option('Oracle','14');
		selbox.options[selbox.options.length] = new Option('Stored Procedures','15');
		selbox.options[selbox.options.length] = new Option('Data Modeling & Design','16');
		selbox.options[selbox.options.length] = new Option('Performance Optimization','17');
		selbox.options[selbox.options.length] = new Option('Other','Other');
		selbox.disabled=false;
	}
	if (val == "Web Design") {
		selbox.options[selbox.options.length] = new Option('(x)HTML','18');
		selbox.options[selbox.options.length] = new Option('CSS','19');
		selbox.options[selbox.options.length] = new Option('JScript','20');
		selbox.options[selbox.options.length] = new Option('Ajax','21');
		selbox.options[selbox.options.length] = new Option('W3C Compliancy','22');
		selbox.options[selbox.options.length] = new Option('Tableless Design','23');
		selbox.options[selbox.options.length] = new Option('Browser Compatiblity','24');
		selbox.options[selbox.options.length] = new Option('Dreamweaver','25');
		selbox.options[selbox.options.length] = new Option('Frontpage','26');
		selbox.options[selbox.options.length] = new Option('Other','Other');
		selbox.disabled=false;
	}
	if (val == "Graphic Design") {
		selbox.options[selbox.options.length] = new Option('Adobe Photoshop','27');
		selbox.options[selbox.options.length] = new Option('Adobe Illustrator','28');
		selbox.options[selbox.options.length] = new Option('Adobe InDesign','29');
		selbox.options[selbox.options.length] = new Option('Adobe Freehand','30');
		selbox.options[selbox.options.length] = new Option('Corel Draw','31');
		selbox.options[selbox.options.length] = new Option('Print Design','32');
		selbox.options[selbox.options.length] = new Option('CMYK/Color Separation','33');
		selbox.options[selbox.options.length] = new Option('Freehand Drawing','34');
		selbox.options[selbox.options.length] = new Option('Painting','35');
		selbox.options[selbox.options.length] = new Option('Other :','Other :');
		selbox.disabled=false;
	}
	if (val == "Flash Design & Animation Skills") {
		selbox.options[selbox.options.length] = new Option('Adobe Flash','36');
		selbox.options[selbox.options.length] = new Option('Action Script','37');
		selbox.options[selbox.options.length] = new Option('2D Cartoon Animation','38');
		selbox.options[selbox.options.length] = new Option('Flash Game Development','39');
		selbox.options[selbox.options.length] = new Option('Flash + ServerSide Script','40');
		selbox.options[selbox.options.length] = new Option('Flash + XML/Database','41');
		selbox.options[selbox.options.length] = new Option('Flash Control from JScript','42');
		selbox.options[selbox.options.length] = new Option('Other','Other');
		selbox.disabled=false;
	}
	if (val == "SEO & Online Marketing") {
		selbox.options[selbox.options.length] = new Option('Keyword Analysis','43');
		selbox.options[selbox.options.length] = new Option('SERP Analysis','44');
		selbox.options[selbox.options.length] = new Option('Site/Page Optimization','45');
		selbox.options[selbox.options.length] = new Option('Link Building','46');
		selbox.options[selbox.options.length] = new Option('Article Submission','47');
		selbox.options[selbox.options.length] = new Option('Link Exchange Campaigning','48');
		selbox.options[selbox.options.length] = new Option('Managing PPC Campaigns','49');
		selbox.options[selbox.options.length] = new Option('Managing PPV Campaigns','50');
		selbox.options[selbox.options.length] = new Option('Online Marketing','51');
		selbox.options[selbox.options.length] = new Option('Other','Other');
		selbox.disabled=false;
	}
	if (val == "Website & Content Moderation") {
		selbox.options[selbox.options.length] = new Option('Website Management','52');
		selbox.options[selbox.options.length] = new Option('Forum Moderation','53');
		selbox.options[selbox.options.length] = new Option('Forum Posting','54');
		selbox.options[selbox.options.length] = new Option('Blog Posting','55');
		selbox.options[selbox.options.length] = new Option('Social Networking','56');
		selbox.options[selbox.options.length] = new Option('User Account Management','57');
		selbox.options[selbox.options.length] = new Option('User/Customer Support','58');
		selbox.options[selbox.options.length] = new Option('Content Moderation','59');
		selbox.options[selbox.options.length] = new Option('Community Building','60');
		selbox.options[selbox.options.length] = new Option('Other','Other');
		selbox.disabled=false;
	}
	if (val == "Server Administration") {
		selbox.options[selbox.options.length] = new Option('Windows Servers / IIS','61');
		selbox.options[selbox.options.length] = new Option('Linux Servers / Apache','62');
		selbox.options[selbox.options.length] = new Option('Perl','63');
		selbox.options[selbox.options.length] = new Option('Performance Monitoring','64');
		selbox.options[selbox.options.length] = new Option('Intrusion Detection System','65');
		selbox.options[selbox.options.length] = new Option('Server Security','66');
		selbox.options[selbox.options.length] = new Option('Load Balancing','67');
		selbox.options[selbox.options.length] = new Option('Log Analysis','68');
		selbox.options[selbox.options.length] = new Option('Shell Scripting','69');
		selbox.options[selbox.options.length] = new Option('Other','Other');
		selbox.disabled=false;
	}
	if (val == "Network Administration") {
		selbox.options[selbox.options.length] = new Option('Cisco (CCNA)','70');
		selbox.options[selbox.options.length] = new Option('Network Security','71');
		selbox.options[selbox.options.length] = new Option('Firewalls/VPN','72');
		selbox.options[selbox.options.length] = new Option('Network Intrusion Detection','73');
		selbox.options[selbox.options.length] = new Option('Windows 2000/2003 Networking','74');
		selbox.options[selbox.options.length] = new Option('Unix/Linux Networking','75');
		selbox.options[selbox.options.length] = new Option('Performance Monitoring','76');
		selbox.options[selbox.options.length] = new Option('Packet / Traffic Analysis','77');
		selbox.options[selbox.options.length] = new Option('Load Balancing / Heartbeat','78');
		selbox.options[selbox.options.length] = new Option('Other','Other');
		selbox.disabled=false;
	}
	if (val == "Copywriting & Creative Writing") {
		selbox.options[selbox.options.length] = new Option('Creative Writing','79');
		selbox.options[selbox.options.length] = new Option('Business Writing','80');
		selbox.options[selbox.options.length] = new Option('Marketing Writing','81');
		selbox.options[selbox.options.length] = new Option('SEO Writing','82');
		selbox.options[selbox.options.length] = new Option('Internet Writing','83');
		selbox.options[selbox.options.length] = new Option('News Reporting / Journalism','84');
		selbox.options[selbox.options.length] = new Option('Poetry / Song Writing','85');
		selbox.options[selbox.options.length] = new Option('Other','Other');
		selbox.disabled=false;
	}
	if (val == "Administrative Skills") {
		selbox.options[selbox.options.length] = new Option('MS Word (Word Processing)','86');
		selbox.options[selbox.options.length] = new Option('MS Excel (Spreadsheets)','87');
		selbox.options[selbox.options.length] = new Option('MS Powerpoint (Presentations)','88');
		selbox.options[selbox.options.length] = new Option('Typing Speed','89');
		selbox.options[selbox.options.length] = new Option('Typing / Work Accuracy','90');
		selbox.options[selbox.options.length] = new Option('Reporting','91');
		selbox.options[selbox.options.length] = new Option('Documentation','92');
		selbox.options[selbox.options.length] = new Option('Correspondance','93');
		selbox.options[selbox.options.length] = new Option('Other','Other');
		selbox.disabled=false;
	}
	if (val == "Management & Leadership") {
		selbox.options[selbox.options.length] = new Option('Project Management','94');
		selbox.options[selbox.options.length] = new Option('People Management','95');
		selbox.options[selbox.options.length] = new Option('Management Reporting','96');
		selbox.options[selbox.options.length] = new Option('Heading Meetings','97');
		selbox.options[selbox.options.length] = new Option('Strategic Thinking','98');
		selbox.options[selbox.options.length] = new Option('Inspirational Leadership','99');
		selbox.options[selbox.options.length] = new Option('Multitasking','100');
		selbox.options[selbox.options.length] = new Option('Delegation','101');
		selbox.options[selbox.options.length] = new Option('Budgetting & Cost Control','102');
		selbox.options[selbox.options.length] = new Option('Other','Other');
		selbox.disabled=false;
	}

	if (val == "") {
		selbox.disabled=true;
	}

}

function setSelectedSkill(intSkill){
	var selbox = document.getElementById("Skill");
	for (var i=0;i<selbox.options.length;i++){

		if (selbox.options[i].value==intSkill){
			selbox.selectedIndex = i;
			displayOther('hide', 'ProfileSkill')
			
		}
		if (intSkill==0){
			selbox.selectedIndex = i;
			displayOther('Other', 'ProfileSkill')
		}
		/*else{
			selbox.selectedIndex = i;
			
			if (i==selbox.options.length){
				displayOther('Other', 'ProfileSkill')
			}else{
				break;
			}
		}
		if (intSkill==279) {//Other
			if (selbox.options[i].value=="Other"){
			selbox.selectedIndex = i;
			break;
			}	
			displayOther('Other', 'ProfileSkill')
		}
		else{
			
		}*/
	}
}


//AJAX
function GetXmlHttpObject()
{ 
	varObjXMLHttp=null;
	try
	{
	// Firefox, Opera 8.0+, Safari
	varObjXMLHttp=new XMLHttpRequest();
	}
	catch (e)
	{
	// Internet Explorer
	try
	{
	varObjXMLHttp=new ActiveXObject("Msxml2.XMLHTTP");
	}
	catch (e)
	{
	try
	{
	varObjXMLHttp=new ActiveXObject("Microsoft.XMLHTTP");
	}
	catch (e)
	{
	alert("Your browser does not support AJAX!");
	//return false;
	}
	}
	}
	return varObjXMLHttp;
}
//------------------------------------------------ -------------------------------------------------------------------//

function finishRequest2(){
document.getElementById("spanId2").innerHTML = this.req.responseText;
}


function getFirstQuestion(intCA_ID,intTE_ID,strTestName,intDuration,blnGoBack,intCountQuestions,blnContinue,intContinueNumber)
{
	var xmlGetQuestion;

	var strParam="CA_ID="+intCA_ID+"&TE_ID="+intTE_ID+"&TestName="+escape(strTestName)+"&Duration="+intDuration+"&GoBack="+blnGoBack+"&CountQuestions="+intCountQuestions+"&Continue="+blnContinue+"&ContinueNumber="+intContinueNumber;
	xmlGetQuestion=GetXmlHttpObject();
	if (xmlGetQuestion==null)
	{
		alert("Browser does not support HTTP Request")
		return;
	}

	if (xmlGetQuestion!=null)
	{ 
		xmlGetQuestion.onreadystatechange=function()
		{
		if(xmlGetQuestion.readyState==4)
		{
			document.getElementById("QuestionBox").innerHTML= xmlGetQuestion.responseText
		} 
		}
		
		xmlGetQuestion.open("POST", "/test/test-ajax-codebehind.asp", true);
		xmlGetQuestion.setRequestHeader("Content-type", "application/x-www-form-urlencoded;charset=Windows-1251");
		xmlGetQuestion.setRequestHeader("Content-length", strParam.length);
		xmlGetQuestion.setRequestHeader("Connection", "close");
		xmlGetQuestion.send(strParam);
	}
}

function getQuestion(mode,intCA_ID,intTE_ID,intTQ_ID,blnGoBack,strTestName,intDuration,intQuestionOrder,intQuestionNumber,intCountQuestions,blnContinue,intContinueNumber,blnBreakerTrigger,intTimeLeft,intCountTotalItems)
{
	var xmlGetQuestion;
	var Answer;
	var objAnswerOpt = document.getElementsByName("Opt"+intQuestionOrder);
	var objAnswerEssay = document.getElementById("Essay"+intQuestionOrder);


	if (objAnswerOpt != null)
	{
		if (objAnswerOpt.value != ""){
			for(var i = 0; i < objAnswerOpt.length ; i++) {
				if(objAnswerOpt[i].checked) {
					Answer = objAnswerOpt[i].value;
				}
			}
		}
		else{
			Answer = "no answer";
		}
	}

	if (objAnswerEssay != null)
	{ 
		if (objAnswerEssay.value != ""){
			Answer = objAnswerEssay.value;
			Answer = Answer.replace(
			 // Replace out the new line character.
			 new RegExp( "\\n", "g" ),
			 // Put in ... so we can see a visual representation of where
			 // the new line characters were replaced out.
			 "<br>"
			 );
		}
		else{
			Answer = "no answer";
		}
	}

	var strParam="mode="+mode+"&TimeLeft="+intTimeLeft+"&CountTotalItems="+intCountTotalItems+"&BreakerTrigger="+blnBreakerTrigger+"&Answer="+escape(Answer)+"&CA_ID="+intCA_ID+"&TE_ID="+intTE_ID+"&TQ_ID="+intTQ_ID+"&GoBack="+blnGoBack+"&TestName="+escape(strTestName)+"&Duration="+intDuration+"&QuestionOrder="+intQuestionOrder+"&QuestionNumber="+intQuestionNumber+"&CountQuestions="+intCountQuestions+"&Continue="+blnContinue+"&ContinueNumber="+intContinueNumber;
	
	xmlGetQuestion=GetXmlHttpObject();
	if (xmlGetQuestion==null)
	{
		alert("Browser does not support HTTP Request")
		return; 
	}
	
	if (xmlGetQuestion!=null)
	{
		xmlGetQuestion.onreadystatechange=function()
		{
		if(xmlGetQuestion.readyState==4)
		{ 
			
			document.getElementById("QuestionBox").innerHTML= xmlGetQuestion.responseText
			document.getElementById("boxLoading").innerHTML= ""
			/*if (xmlGetQuestion.responseText.indexOf("<script></script>") == -1)
			{
				if (objTimerBox != null)
				{
					objTimerBox.style.display="none";
					//document.location.href="/test/test-results.asp?CA_ID="+intCA_ID+"&TE_ID="+intTE_ID;
				}
			}*/
		}
		else
		{
			document.getElementById("boxLoading").innerHTML= "<img src=\"/builder-v4/frame/ajax-loader.gif\">"
		}
		}

		xmlGetQuestion.open("POST", "/test/test-ajax-codebehind.asp", true);
		xmlGetQuestion.setRequestHeader("Content-type", "application/x-www-form-urlencoded;charset=Windows-1251");
		xmlGetQuestion.setRequestHeader("Content-length", strParam.length);
		xmlGetQuestion.setRequestHeader("Connection", "close");
		xmlGetQuestion.send(strParam);
	}
}

function getQuestionContinue(intCA_ID,intTE_ID,intTQ_ID,blnGoBack,strTestName,intDuration,intQuestionOrder,intCountQuestions,blnContinue,intContinueNumber,strAnswer,intQuestionNumber,intCountTotalItems,blnBreakerTrigger)
{
	var xmlGetQuestion;

	var objAnswerOpt = document.getElementsByName("Opt"+intQuestionOrder);
	var objAnswerEssay = document.getElementById("Essay"+intQuestionOrder);
	
	if (objAnswerEssay = "no answer")
	{
		strAnswer = objAnswerOpt;
	}
	else
	{
		strAnswer = objAnswerEssay;
	}

	var strParam="mode=prev&Answer="+escape(strAnswer)+"&CA_ID="+intCA_ID+"&TE_ID="+intTE_ID+"&TQ_ID="+intTQ_ID+"&GoBack="+blnGoBack+"&TestName="+escape(strTestName)+"&Duration="+intDuration+"&QuestionOrder="+intQuestionOrder+"&QuestionNumber="+intQuestionNumber+"&CountQuestions="+intCountQuestions+"&Continue="+blnContinue+"&ContinueNumber="+intContinueNumber+"&CountTotalItems="+intCountTotalItems+"&BreakerTrigger="+blnBreakerTrigger;
	xmlGetQuestion=GetXmlHttpObject();
	if (xmlGetQuestion==null)
	{
		alert("Browser does not support HTTP Request")
		return; 
	}

	if (xmlGetQuestion!=null)
	{
		xmlGetQuestion.onreadystatechange=function()
		{
		if(xmlGetQuestion.readyState==4)
		{ 
			
			document.getElementById("QuestionBox").innerHTML= xmlGetQuestion.responseText
			document.getElementById("boxLoading").innerHTML= ""
			/*if (xmlGetQuestion.responseText.indexOf("<script></script>") == -1)
			{
				if (objTimerBox != null)
				{
					objTimerBox.style.display="none";
					//document.location.href="/test/test-results.asp?CA_ID="+intCA_ID+"&TE_ID="+intTE_ID;
				}
			}*/
		}
		else
		{
			document.getElementById("boxLoading").innerHTML= "<img src=\"/builder-v4/frame/ajax-loader.gif\">"
		}
		}
		
		xmlGetQuestion.open("POST", "/test/test-ajax-codebehind.asp", true);
		xmlGetQuestion.setRequestHeader("Content-type", "application/x-www-form-urlencoded;charset=Windows-1251");
		xmlGetQuestion.setRequestHeader("Content-length", strParam.length);
		xmlGetQuestion.setRequestHeader("Connection", "close");
		xmlGetQuestion.send(strParam);
	}
}

function endTest(isLast,intCA_ID,intTE_ID,intTQ_ID,blnGoBack,strTestName,intDuration,intQuestionOrder,intCountQuestions,blnContinue,intContinueNumber,intTimeLeft,intCountTotalItems)
{
	var xmlGetQuestion;
	var Answer;

	if (isLast=="yes")
	{
		var objAnswerOpt = document.getElementsByName("Opt"+intQuestionOrder);
		var objAnswerEssay = document.getElementById("Essay"+intQuestionOrder);
		
		if (objAnswerOpt != null)
		{
			if (objAnswerOpt.value != ""){
				for(var i = 0; i < objAnswerOpt.length ; i++) {
					if(objAnswerOpt[i].checked) {
						Answer = objAnswerOpt[i].value;
					}
				}
			}
			else{
				Answer = "no answer";
			}
		}

		if (objAnswerEssay != null)
		{ 
			if (objAnswerEssay.value != ""){
				Answer = objAnswerEssay.value;
			}
			else{
				Answer = "no answer";
			}
		}

	}
	
	var strParam="isLast="+isLast+"&mode=button&CA_ID="+intCA_ID+"&TE_ID="+intTE_ID+"&TQ_ID="+intTQ_ID+"&GoBack="+blnGoBack+"&TestName="+escape(strTestName)+"&Duration="+intDuration+"&QuestionOrder="+intQuestionOrder+"&CountQuestions="+intCountQuestions+"&Continue="+blnContinue+"&ContinueNumber="+intContinueNumber+"&Answer="+escape(Answer)+"&TimeLeft="+intTimeLeft+"&CountTotalItems="+intCountTotalItems;
	xmlGetQuestion=GetXmlHttpObject();
	if (xmlGetQuestion==null)
	{
		alert("Browser does not support HTTP Request")
		return;
	}

	if (xmlGetQuestion!=null)
	{ 
		xmlGetQuestion.onreadystatechange=function()
		{
		if(xmlGetQuestion.readyState==4)
		{
			document.getElementById("QuestionBox").innerHTML= xmlGetQuestion.responseText
			document.getElementById("boxLoading").innerHTML= ""
		} 
		else
		{
			document.getElementById("boxLoading").innerHTML= "<img src=\"/builder-v4/frame/ajax-loader.gif\">"
		}
		}

		xmlGetQuestion.open("POST", "/test/function-process-test-results.asp", true);
		xmlGetQuestion.setRequestHeader("Content-type", "application/x-www-form-urlencoded;charset=Windows-1251");
		xmlGetQuestion.setRequestHeader("Content-length", strParam.length);
		xmlGetQuestion.setRequestHeader("Connection", "close");
		xmlGetQuestion.send(strParam);
	}
}

