/*startList = function() {
if (document.all && document.getElementById) {
navRoot = document.getElementById("nav");
for (i=0; i<navRoot.childNodes.length; i++) {
  node = navRoot.childNodes[i];
  if (node.nodeName=="LI") {
  node.onmouseover=function() {
  this.className+=" over";
    }
  node.onmouseout=function() {
  this.className=this.className.replace
      (" over", "");
   }
   }
  }
 }
}
window.onload=startList;*/





function qc(section)
{
	if(section == 1)
	{
		window.open('qc_sales.html', 'quickContact', 'toolbar=0,status=0,resize=0,width=300,height=150');
	}
	
	if(section == 2)
	{
		window.open('qc_support.html', 'quickContact', 'toolbar=0,status=0,resize=0,width=300,height=150');
	}
	
	if(section == 3)
	{
		window.open('qc_info.html', 'quickContact', 'toolbar=0,status=0,resize=0,width=300,height=150');
	}
	
	if(section == 4)
	{
		window.open('qc_helpline.html', 'quickContact', 'toolbar=0,status=0,resize=0,width=300,height=150');
	}
}