function contactInfo(form) {
function HideLayer(id, action){
	if (type=="IE") eval("document.all." + id + ".style.display='none'");
	if (type=="NN") eval("document." + id + ".display='" + action + "'");
	if (type=="MO" || type=="OP" || type=="SF") eval("document.getElementById('" + id + "').style.display='" + action + "'");
}
HideLayer('Sales', 'none');
HideLayer('LiveHelp', 'none');
HideLayer('CustomerService', 'none');
HideLayer('Verification', 'none');
HideLayer('UsedDept', 'none');
HideLayer('CorpSales', 'none');
HideLayer('GovEdu', 'none');
HideLayer('LiteratureOrMailinglistissues', 'none');
HideLayer('PortugueseSpeakingCustomers', 'none');
HideLayer('OtherForeignCustomers', 'none');
HideLayer('WebSiteComments', 'none');
HideLayer('IndiaOffice', 'none');
capt=form.Department.value;
if(capt=="Sales"){
if(type=="MO"){
	 ShowLayer('Sales', 'table-cell');
	 }
	 else{
	  ShowLayer('Sales', 'block');
	  }
}else if(capt=="LiveHelp"){
	if(type=="MO"){
	 ShowLayer('LiveHelp', 'table-cell');
	 }
	 else{
	  ShowLayer('LiveHelp', 'block');
	  }
}else if(capt=="CustomerService"){
	if(type=="MO"){
	 ShowLayer('CustomerService', 'table-cell');
	 }
	 else{
	  ShowLayer('CustomerService', 'block');
	  }
}else if(capt=="Verification"){
	if(type=="MO"){
	 ShowLayer('Verification', 'table-cell');
	 }
	 else{
	  ShowLayer('Verification', 'block');
	  }
}else if (capt=="UsedDept"){
	if(type=="MO"){
	 ShowLayer('UsedDept', 'table-cell');
	 }
	 else{
	  ShowLayer('UsedDept', 'block');
	  }
}else if(capt=="CorpSales"){
	if(type=="MO"){
	 ShowLayer('CorpSales', 'table-cell');
	 }
	 else{
	  ShowLayer('CorpSales', 'block');
	  }
}else if(capt=="GovEdu"){
if(type=="MO"){
	 ShowLayer('GovEdu', 'table-cell');
	 }
	 else{
	  ShowLayer('GovEdu', 'block');
	 }
}else if(capt=="GovernmentSales"){
if(type=="MO"){
	 ShowLayer('GovernmentSales', 'table-cell');
	 }
	 else{
	  ShowLayer('GovernmentSales', 'block');
	 }
}else if(capt=="CorporateAccountsSales"){
if(type=="MO"){
	 ShowLayer('CorporateAccountsSales', 'table-cell');
	 }
	 else{
	  ShowLayer('CorporateAccountsSales', 'block');
	 }
}else if(capt=="LiteratureOrMailinglistissues"){
if(type=="MO"){
	 ShowLayer('LiteratureOrMailinglistissues', 'table-cell');
	 }
	 else{
	  ShowLayer('LiteratureOrMailinglistissues', 'block');
	 }
}else if(capt=="PortugueseSpeakingCustomers"){
if(type=="MO"){
	 ShowLayer('PortugueseSpeakingCustomers', 'table-cell');
	 }
	 else{
	  ShowLayer('PortugueseSpeakingCustomers', 'block');
	 }
}else if(capt=="IndiaOffice"){
if(type=="MO"){
	 ShowLayer('IndiaOffice', 'table-cell');
	 }
	 else{
	  ShowLayer('IndiaOffice', 'block');
	 }
}else if(capt=="OtherForeignCustomers"){
if(type=="MO"){
	 ShowLayer('OtherForeignCustomers', 'table-cell');
	 }
	 else{
	  ShowLayer('OtherForeignCustomers', 'block');
	 }
}else if(capt=="WebSiteComments"){
if(type=="MO"){
	 ShowLayer('WebSiteComments', 'table-cell');
	 }
	 else{
	  ShowLayer('WebSiteComments', 'block');
	 }
}
}
