// JavaScript Document
window.onload = function() {
	document.form.cpt_code.focus();
}
function createUrl(num){
	//If number matches a code from my list, concantonate it to a URL and take me there. Otherwise, pop an alert.
	var exists = "";
	var myList = [ "228", "229", "279", "280", "281", "282", "283", "284", "285", "286", "287", "288", "289", "290", "291", "292", "293", "294", "295", "296", "297", "298", "299", "727", "731", "732", "733", "734", "735", "736", "741", "742", "743", "744", "745", "799" ];
		
	for (var i = 0; i < myList.length; i++) {
		if (num == myList[i]) {
			exists = "true";
			var newUrl = "/crdm-code-lookup/93" + num + ".html";
			window.location = newUrl;
			return false;
		}
	}
	if (exists != "true") {
		alert("Code not found. Please re-enter.")
		return false;
	}
}