function popupWindow(url) {
	window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=650,height=500,screenX=150,screenY=150,top=150,left=150')
}

function popupXL2(of) {
	var xlContStyle = document.getElementById('xlCont').style
	xlContStyle.display='block';
	
	if (of && document.getElementById('xlImg').height > 400) {
		with (xlContStyle) {
			height='400px';
			width=(parseInt(document.getElementById('xlImg').width) + 20) + 'px';
			overflow='auto'
		}
	}
}

function categoriesOverEffect(object) {
  if (object.className == 'categories') object.className = 'categoriesOver';
}

function categoriesOutEffect(object) {
  if (object.className == 'categoriesOver') object.className = 'categories';
}

function displayFormBox(a) {
	var a;
	if (a == 1) {
		document.getElementById('blocCb').style.display = "block";
	}
	else {
		document.getElementById('blocCb').style.display = "none";
	}
}
