//// declare variables
// CONTACT US updated Dec 6, 2004

// SalesBilling
var rep1 = 'sgallegos@visioninfosoft.com'
var rep1_name = 'Steve Gallegos'
var rep1_ext = '119'
var rep1_pic = 'spacer.gif' 

// TechnicalSupport
var rep2 = 'support@visioninfosoft.com'
var rep2_name = 'Carlyle Poole'
var rep2_ext = '131'
var rep2_pic = 'spacer.gif' 

// Technical Support
var rep3 = 'ddelliquadri@visioninfosoft.com'
var rep3_name = 'Derrick Delliquadri'
var rep3_ext = '146'
var rep3_pic = 'spacer.gif' 

function FormRep(theForm)
{

  switch (theForm.Dept.value) {
	    case 'SB':	theForm.Vision_Rep.value = rep1;
					theForm.Vision_RepName.value = rep1_name;
					theForm.Vision_RepExt.value = rep1_ext;
					theForm.Vision_RepPic.value = rep1_pic;
				break;
		case 'TS':	theForm.Vision_Rep.value = rep2;
					theForm.Vision_RepName.value = rep2_name;
					theForm.Vision_RepExt.value = rep2_ext;
					theForm.Vision_RepPic.value = rep2_pic;
				break;
		case 'M':	theForm.Vision_Rep.value = rep3;
					theForm.Vision_RepName.value = rep3_name;
					theForm.Vision_RepExt.value = rep3_ext;
					theForm.Vision_RepPic.value = rep3_pic;
				break;
    case '':    
    default:    	theForm.Vision_Rep.value = rep3;
					theForm.Vision_RepName.value = rep3_name;
					theForm.Vision_RepExt.value = rep3_ext;
					theForm.Vision_RepPic.value = rep3_pic;
       break
  	}
	
	  return (true);
}