function ge(a){ return document.getElementById(a); }
function mshow(a){ ge(a).style.display = 'block'; }
function mhide(a){ ge(a).style.display = 'none'; }

function setCookie(c_name,value,expiredays){
	var exdate=new Date()
	exdate.setDate(exdate.getDate()+expiredays)
	document.cookie=c_name+ "=" +escape(value)+
	((expiredays==null) ? "" : ";expires="+exdate)
}

function image_show(str, width, height){	
	window.open('http://www.business-space.pl/statystyki/'+str,'Image','directories=no,fullscreen=no,height='+(height+30)+',location=no,menubar=no,resizable=no,scrollbars=no,status=yes,titlebar=yes,toolbar=no,width='+(width+30));
	return false;	
}

function gallery_show(str, width, height){	
	max_width = screen.width - 200;
	max_heigth = screen.height - 200;	
	width = Math.min(width,max_width);
	height = Math.min(height,max_heigth);	
	window.open('http://www.business-space.pl/galeria/'+str,'Image','directories=no,fullscreen=no,height='+(height+30)+',location=no,menubar=no,resizable=yes,scrollbars=yes,status=yes,titlebar=yes,toolbar=no,width='+(width+30));
	return false;	
}

function zmien(){
	d = new Date();
	ge('tim').src = '/token.php?t=' + d.getTime();
}