var aMagazineArr=new Array('  ','AR','IQ','EN','BA','TI','PV','PS','PH','IS','OE','HZ','HD','HO','HE','MI','ZH','RN','MB','OH','OH','OS','FQ','QA','KN','KS','KI','ME','MR','MT','MN','MO','MJ','NM','NS','NN','HA');
//*************
//   Preload Image Section
//*************
var oKey01=new Image();
oKey01.src="/Common/Image/Keyboard/Key1.gif";
var oKey02=new Image();
oKey02.src="/Common/Image/Keyboard/Key2.gif";
var oKey03=new Image();
oKey03.src="/Common/Image/Keyboard/KeyFar.gif";
var oKey04=new Image();
oKey04.src="/Common/Image/Keyboard/KeyEng.gif";
var oRad01=new Image();
oRad01.src="/Common/Image/Radio01.gif";
var oRad02=new Image();
oRad02.src="/Common/Image/Radio02.gif";
var oFont01=new Image();
oFont01.src="/Per/Image/Font01.gif";
var oFont02=new Image();
oFont02.src="/Per/Image/Font02.gif";

sFontImg ="/Per/Image/Font";
sSearImg ="/Common/Image/Radio";
//*************

sOffColor="'#388988'";
sTxOffCol="'White'";

sOnColor="'#FFCC00'";
sTxOnCol="'Black'";

function Off(sId)
{
	sIdRun=sId+".style.backgroundColor="+sOffColor;
	eval(sIdRun);
	sIdRun=sId+".style.color="+sTxOffCol;
	eval(sIdRun);
}

function On(sId)
{
	sIdRun=sId+".style.backgroundColor="+sOnColor;
	eval(sIdRun);
	sIdRun=sId+".style.color="+sTxOnCol;
	eval(sIdRun);
}

function SearchOff(sId)
{
	sIdRun="Im"+sId+'.src="'+sSearImg+'01.gif"';
	eval(sIdRun);
	sIdRun="Bt"+sId+".className='normal'";
	eval(sIdRun);
}

function SearchOn(sId)
{
	sIdRun="Im"+sId+'.src="'+sSearImg+'02.gif"';
	eval(sIdRun);
	sIdRun="Bt"+sId+".className='active'";
	eval(sIdRun);
}


function ImgOff(sId)
{
	sIdRun=sId+'.src="'+sFontImg+'01.gif"';
	eval(sIdRun);
}

function ImgOn(sId)
{
	sIdRun=sId+'.src="'+sFontImg+'02.gif"';
	eval(sIdRun);
}

function SetCategory(sRadioId)
{
	
	document.forms.search.Path.value=sRadioId;
	if (sRadioId=='1')
		document.forms.search.Magazine.style.visibility='visible';
	else
		document.forms.search.Magazine.style.visibility='hidden';

	for(nl=1;nl<5;nl++) SearchOff(nl);
	SearchOn(sRadioId);
}

function ProccessForm()
{
	var sObj=document.forms.search;
	var sText=sObj.Text.value;
	var oPath=sObj.Path;
	var sPath=sObj.Path.value;
	if ( sText.length==0 ) {
		alert('لطفا كلمه مورد نظر را وارد كنيد');
		return ;
	}
	if (sPath==1) {
		if (sMagTx.indexOf('...') != -1)
			oPath.value='/Arb/Magazine' ;
		else
			oPath.value='/Per/Magazine' ;
		if (nMagId>0) {
			oPath.value=oPath.value+'/'+aMagazineArr[nMagId];
		}
	}
	if (sPath==2) {
		oPath.value='/Per/K'
	}
	if (sPath==3) {
		oPath.value='/Per/A,/Per/E,/Per/F,/Per/H,/Per/I,/Per/O,/Per/Q,/Per/T'
	}
	if (sPath==4) {
		oPath.value='/'
	}
	oPath.value=oPath.value+sPath;
	sObj.submit();
}