function setCookie(c_name,value,expiredays, path) {
	var exdate=new Date();
	exdate.setDate(exdate.getDate()+expiredays);
	document.cookie=c_name+ "=" +escape(value)+((expiredays==null) ? "" : "; expires="+exdate.toUTCString())+((path)?";path="+path:"");
}
$(document).ready(function() {
	//Set Cookie to not display warning after this page
	//$("a").click(function() {
		setCookie('warning',1,14,'/');
	//});
	//$('#search_form').submit(function() {
		//setCookie('warning',1,14,'/');
	//});
});
