function dimm(){
 	if ($('dimmer')){
		document.body.removeChild($('dimmer'));
		return false;
	}
	//var width = document.body.offsetWidth + "px";
	var height = document.body.offsetHeight +"px";
	var el = document.createElement('div');
	el.appendChild(document.createTextNode(' '));
	el.className = 'dimmer';
	el.id = 'dimmer';
	//el.style.width = width;
	el.style.height = height;
	document.body.appendChild(el);
}

function minisite(){
	dimm();
	if ($('minisiteBox')){
		document.body.removeChild($('minisiteBox'));
		startTickers();
		return false;
	}
	iframe = document.createElement('iframe');
	div = document.createElement('div');
	div.id = 'minisiteBox';
	iframe.src = 'minisite/minisite.htm';
	div.appendChild(iframe);
	document.body.appendChild(div);
}
function setMiniCookie(value){	
	showmini = (value)?value:((document.forms[0].mini.value="")?"off":"on");
	setCookie( 'showmini', showmini, 365, "/", ".rov.co.il", false );
}
function getMiniCookie(){
	return getCookie('showmini')
}
