1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
|
<?
function aufzu(id){
if(document.getElementById(id).style.display == 'none') {
document.getElementById(id).style.display = 'block';
setCookie(id, '0');
} else {
document.getElementById(id).style.display = 'none';
setCookie(id, '1');
}
}
function getCookie(Name){
var re=new RegExp(Name+"=[^;]+", "i");
if (document.cookie.match(re))
return document.cookie.match(re)[0].split("=")[1];
return "";
}
function setCookie(name, value){
document.cookie = name+"="+value + ";path=/;expires=Thu, 31-Dec-2099 00:00:01 GMT";
}
?>
|