﻿function cancelClick() {

    document.getElementById('FaqModalWindowInfo').style.display = 'none';
		var exp = new Date();	    //set new date object	
		exp.setTime(exp.getTime() + (1000 * 60 * 60 * 24 * 30*15));     //set it 450 days ahead
		document.cookie = "FAQ=" + escape('tmp') + "; path=/" + ((exp == null) ? "" : "; expires=" + exp.toGMTString()); 
    }
    function OpenModal() 
    {    
			
			document.getElementById('FaqModalWindowInfo').style.display = 'block';
		
    }