// JavaScript Document
function navigateToClientLogin() {
    		if(document.getElementById("selClientLogin").options.selectedIndex==1){
    		    //window.location.href = "/client-login.aspx?url=ccon";
    		    window.open("https://cc.cutwater.com","ccon","location=1,status=1,menubar=1,toolbar=1,scrollbars=1,width=100,height=100");
				$.cookie('url', "https://cc.cutwater.com");				
			}
			else if(document.getElementById("selClientLogin").options.selectedIndex==2){
				//window.location.href= "/client-login.aspx?url=webreps";
				window.location.href = "https://packman-webreps.com/default_cutwater.asp";
				$.cookie('url',"https://packman-webreps.com/default_cutwater.asp");
			}
			else if(document.getElementById("selClientLogin").options.selectedIndex==3){
				window.location.href="/client-login.aspx";
				//setCookie('url',"http://packman-webreps.com/default.asp",365);
			}
}


