popTimer = setTimeout("",1);
gscs = function() {
	var s = {w:0, h:0};
	var ws = window.screen;
	if (ws.width) s.w = ws.width;
	if (ws.height) s.h = ws.height;
	if (ws.availWidth) s.w = ws.availWidth;
	if (ws.availHeight) s.h = ws.availHeight;
	return s;
}
pop = function(f) {
	if (!f) f = document.getElementById('picker');
	if (!f.lang || f.lang.selectedIndex==0) return false;
	var l = f.lang.options[f.lang.selectedIndex].value;
	if (l==null || l==undefined || l=='--') return false;
	var w = null;
	var s = gscs();
	var u = (l.length=='2')? '_'+l+'/gorenje.html' : l;
	w = window.open(u,'site','width='+s.w+',height='+s.h+',fullscreen=1,scrollbars=no');
	if (!w)	this.location.href = u;
	else w.focus();
}
delaypop = function() {
	clearTimeout(popTimer);
	popTimer = setTimeout("pop()",100);
}
onload = function() {
	var v = Flash.getVersion();
	if (!v || v==0 || v<6) {
		var p = document.getElementById("warning");
		if (!p) return;
		p.style.cssText = "display:block;color:red;";
		p.innerHTML = (!v || v==0)? "You do not seem to have Macromedia Flash Player installed.<br />If you do please ignore this message and enter the site, otherwise please install it via the link above." : "You do not seem to have Macromedia Flash Player 6 or higher installed.<br />If you do please ignore this message and enter the site, otherwise please upgrade via the link above.";
	}
}
