function tagglediv(id)
{
	
	//var base_url="http://localhost/pcsolutions/";
	var base_url="http://www.pcsolutionstech.com/";
	document.getElementById("imgid_" + id).src = (document.getElementById("imgid_" + id).src==base_url+'images/collapse.gif')? base_url+"images/expand.gif":base_url+"images/collapse.gif";
	
	
	if(document.getElementById("imgid_" + id).src==base_url+'images/collapse.gif')
	{
		vis=document.getElementById("first_"+id).style;	
		vis.display = 'none';
		vis.visibility = 'hidden';	
		
		svis=document.getElementById("second_"+id).style;	
		svis.display = 'block';
		svis.visibility = 'visible';	
		
	}else
	{
		vis1=document.getElementById("first_"+id).style;	
		vis1.display = 'block';
		vis1.visibility = 'visible';	
		
		svis1=document.getElementById("second_"+id).style;	
		svis1.display = 'none';
		svis1.visibility = 'hidden';	
	}	
}


function openwindow()
   {
  window.open("index.php?module=contact&action=emailus",'welcome','width=501,height=400,menubar=no,status=no,location=no,toolbar=no,scrollbars=no,autocenter=true,left=250,top=250');   
   }
 

function chopText(elem, limit)
{
if(elem.value.length>limit)
elem.value=elem.value.substring(0,limit);
document.getElementById('cLeft').innerHTML = limit-elem.value.length
} 
  
