// JavaScript Document

function posShow(){
	if(document.contactForm.selNewSystem.value=="Upgrade from a current POS system") {	
	whichPOS.style.visibility='visible';
	}
	else {	
	whichPOS.style.visibility='hidden';
	}
}

function posJump(){
	if(whichPOS.style.visibility=="visible") {	
	document.contactForm.txtCurrentPOS.focus();
	}
	else {	
	document.contactForm.txtNotesQuestions.focus();
	return false;
	}
}
