// open tesimonial page
function openPage(page) {
 window.open(page,'','scrollbars=yes,resizable=yes,width=530,height=500')
}

// for tab color change in company section
function comTab(id)
	{
		for(var i=0;i<6;i++){
				document.getElementById('partner'+i).className ="";
				//document.getElementById('subnav'+i).style.display ="none";
		}
		document.getElementById('partner'+id).className ="selected";
		//document.getElementById('subnav'+id).style.display ="";
	}
