function iwDownload(){
	var answer = confirm ("You are about to download AOK Networking's Proactive Care™. This software will give AOK Networking the ability to remotely access your computer. \n\nWould you like to continue?");
	if (answer){
		var fname;
		//return true;
		if (navigator.appVersion.indexOf("Win")!=-1){
			fname = "KcsSetup.exe";
		}else if(navigator.appVersion.indexOf("Mac")!=-1){
			fname = "KcsSetup.zip";
		}
		
		//var loc = "downloads/" + fname;
		
		window.open("http://support.aoknetworking.com/mkDefault.asp?id=62964701",'_blank');
	}else{
		return false;
	}
}

function serviceType(){
	var list = document.getElementById("serviceSelect");
	var form = document.getElementById("supportForm");
	var question = document.getElementById("serviceQuestion");
	
	if(list.value == 1){
		list.value = "default";
		window.open('http://connect.aoknetworking.net/v4_6_release/services/system_io/Portal/Default.aspx?undefined','_blank');
	}else if(list.value == 0){
			form.style.display = "block";
			list.style.display = "none";
			question.style.display = "none";
			
	}
}
