function showMessage(){

	if (hasMessage){
		showWindow('fade-container', 'important-info-layer');
	}
};
    
function hideMessage(){
   	var c = document.getElementById('no-show');
   	if (c.checked){
   		var ns = readCookie('cwsMsg');
   		if (ns == null){
   			ns = c.value;
   		}else{
   			ns = ns + '|' + c.value;
   		}
   		createCookie('cwsMsg', ns, 1);
   	}
   	
   	hideWindow();
};


