/* 
Copyright © 2007 Rubberstock
Site Design and development by PIXNFLIX Visual Communications
HTML Designer : Nandhagopan
 */
function textbox()
{
	if(document.searchfrm.keywordsearch.value=='keywordsearch')
	{
		document.searchfrm.keywordsearch.value='';
	}
	else if(document.searchfrm.keywordsearch.value=='')
	{
		document.searchfrm.keywordsearch.value='keywordsearch'
	}
	
}
function pass()
{
	if(document.demoForm.text.style.display=='block')
	{
		
		document.demoForm.text.style.display='none';
		document.demoForm.password.style.display='block'
		document.demoForm.password.focus();
		
	}else{
		if(document.demoForm.password.value==''){
		document.demoForm.text.style.display='block';
		document.demoForm.password.style.display='none';
		document.demoForm.password.value='';}
		
	}

}
function subNavi(x,id)
{
	
	for(i=1; i<=1; i++)
	{
		document.getElementById("sub"+i).style.display="none";
		document.getElementById('active'+i).style.fontWeight="";
	    document.getElementById('active'+i).style.backgroundColor="";
	}
	if (document.getElementById("sub"+x).style.display=="none")
	{
		document.getElementById("sub"+x).style.display="block";
		document.getElementById(id).style.fontWeight='bold';
	    document.getElementById(id).style.backgroundColor='#fefae8';

	}
}