// JavaScript Document



/*function addExchange() { 
	
	
	 $('input[type="checkbox"]').bind('click',function() {
    //$('#checkboxSecureIM[type="checkbox"]').bind('click',function() {
        if($('#checkboxSecureIM').is(':checked')) {
			exchangeSecureIM = "on";
			console.log("exchangeSecureIM on");

         }
		 else if ($('#checkboxWebConf').is(':checked')) {
			exchangeWebConf = "on";
			console.log("exchangeWebConf on");
			 
			 }
		 
		 else {
			 exchangeWebIM = "off";
			 exchangeWebConf = "off";
			
			console.log("exchangeWebIM off");
			console.log("exchangeWebConf off");
		}
		 
   });
};*/



function webconfCheckout(plan)
{
	if (plan == "webConf") {
		if($('#checkboxWebConf').is(':checked')) {
			//console.log("exchangeWebConf on");
			window.location = "/retail/exchange.asp"

         }
		else {
			//console.log("exchangeWebConf off");
			goPar2('ocsr2');
         }
		
	}
		
	else if (plan == "secureIM") {
		if($('#checkboxSecureIM').is(':checked')) {
			//console.log("exchangeSecureIM on");
			window.location = "/retail/exchange.asp"
         }
		else {
			//console.log("exchangeSecureIM off");
			goPar2('ocsr2');
         }		
		
	}	
	
	else {

  	}
}



