function get_cookie(cookie_name) {	var results = document.cookie.match('(^|;) ?' + cookie_name + '=([^;]*)(;|$)');	if (results) {		return (results[2]);	} else {		return null; 	}}function hidebox() {	document.getElementById('age_b').style.display = 'none';	document.getElementById('age_s').style.display = 'none';	document.cookie = "age=ok";}function SubBox(x, y, w, h, bgc, id) {	var v = document.createElement('div');	v.setAttribute('id', id);	v.style.position = 'absolute';	v.style.left = x + 'px';	v.style.top = y + 'px';	v.style.width = w + 'px';	v.style.height = h + 'px';	v.style.backgroundColor = bgc;	v.style.visibility = 'visible';	v.style.padding = '0px';	return v;}function agecheck() {	var w3c = (document.getElementById)? true : false;	var ie5 = (w3c && document.all)? true : false;	var zdx = 1;		var shadow = new SubBox(0,0,400,400,'#310210','age_s');	if (ie5) {		shadow.style.filter = "alpha(opacity=97)";	}	shadow.style.opacity = 0.97;	shadow.style.width = '100%';	shadow.style.height = '100%';	shadow.style.zIndex = ++zdx;		var outerdiv = new SubBox(0,0,300,310,'#ffffff','age_b');	outerdiv.style.display = "block";	outerdiv.style.borderStyle = "outset";	outerdiv.style.borderWidth = "0px";	outerdiv.style.marginLeft = '-150px';	outerdiv.style.marginTop = '-150px';	outerdiv.style.left = '50%';	outerdiv.style.top = '50%';	outerdiv.style.zIndex = ++zdx;	var content = new SubBox(0,0,300,310,'#ffffff','age_c');	content.style.borderStyle = "inset";	content.style.overflow = "auto";	content.style.padding = "0px 2px 0px 4px";	content.style.background = "url(/got.nsf/resources/logos-back/$File/wallpaper.jpg)";	content.style.border = "5px solid #940731";	content.innerHTML = "<p align=\"center\" style=\"padding:15px 0 15px 0; margin:0;\"><img src=\"/got.nsf/resources/age-confirm/$File/chris-wine-spirits-age.gif\" width=\"154\" height=\"77\" alt=\"\" border=\"0\"></p><p align=\"center\" style=\"font:bold 13px Arial, Helvetica, sans-serif; padding:0 0 5px 0; margin:0;\">V&auml;lkommen till var nya hemsida!</p><p align=\"center\" style=\"font:normal 10px Arial, Helvetica, sans-serif; padding:0; margin:0;\">Denna webbplats inneh&aring;ller information<br>om alkoholhaltiga drycker och minimi&aring;lder<br>f&ouml;r att g&aring; vidare &auml;r d&auml;rf&ouml;r 20 &aring;r.<br><br>This site contains information about alcohol<br>beverages and you must be at least<br>20 years of age to enter</p><p align=\"center\" style=\"font:bold 11px Arial, Helvetica, sans-serif;\"><a href=\"http://www.chriswine.se/\">Jag &auml;r 20 &aring;r eller &auml;ldre</a><br><br><a href=\"http://www.chriswine.se/\">I am at least 20 years of age</a></p>";	outerdiv.appendChild(content);	document.body.appendChild(shadow);	document.body.appendChild(outerdiv);}