//<!-- JavaScript Document

function changecorner(id,d)
{
if (d==1){
	document.getElementById(id).className='chmenucorner';
	}
else {
	document.getElementById(id).className='cmenucorner';
	}
}


//change link class for expanded submenu
var mlinks=new Object();
function changeclass(n,dir)
{
if (mlinks[n]==undefined) mlinks[n]=n;
for (var i in mlinks){
	if (i!=n) document.getElementById('mlink'+i).className='menulink';
	}

if (dir==1){
	document.getElementById('mlink'+n).className='activelink';
	}
else {
	document.getElementById('mlink'+n).className='menulink';
	}
}


//show testimonial
function showtestimonial(fid,d)
{
var id1='ctest'+fid;
var id2='cblackcell'+fid;
if (d==1){
	document.getElementById(id1).style.display='block';
	document.getElementById(id2).style.display='block';
	}
else {
	document.getElementById(id1).style.display='none';
	document.getElementById(id2).style.display='none';
	}
}


//check other radio
function checkotherradio(templ,n)
{
if (document.getElementById(templ+n).checked){
	document.getElementById('t'+templ).disabled=false;
	}
else {
	document.getElementById('t'+templ).value='';
	document.getElementById('t'+templ).disabled=true;
	}
}


//Submit Form
function submitForm(id1)
{
document.getElementById(id1).submit();
}

//-->
