// JavaScript Document

function writenav(){
		document.write("<div style='padding-top:20px; padding-left:10px;'>");
		document.write("<div style='padding:5px;line-height:12px;'><a href='index.html'>Home</a></div>");
		document.write("<div style='padding:5px;line-height:12px;'><a href='details.html'>Conference Details</a></div>");
		document.write("<div style='padding:5px;line-height:12px;'><a href='agenda_coe.html'>LTC &amp; Distributor Conference</a></div>");
		document.write("<div style='padding:5px;line-height:12px;'><a href='agenda_it.html'>Instructor Trainer Conference</a></div>");
		document.write("<div style='padding:5px;line-height:12px;'><a href='agenda_workshop.html'>Professional Workshop Day</a></div>");
		document.write("<div style='padding:5px;line-height:12px;'><a href='marketplace.html'>Marketplace</a></div>");
		document.write("<div style='padding:5px;line-height:12px;'><a href='accomodation.html'>Location &amp; Accomodation</a></div>");
		document.write("<div style='padding:5px;line-height:12px;'><a href='register.html'>Pricing &amp; Registration</a></div>");
		document.write("</div>");
		
}

$(document).ready(function() {
		$("#btn_goto").click(function () {
			 if($('#usertype').val() == "LTCD"){
				 window.location = "details.lasso?type=1";

			 }
			 else if($('#usertype').val() == "IT"){
				 	window.location ="details.lasso?type=1";
			 }
			 else if($('#usertype').val() == "FP"){
				 window.location = "details.lasso?type=2";
			 }
			 else{
				 alert("Please select your profession");
			 }
		});
		
});