function checkvalue(obj) {
	if (obj.value == 0) {
		return;
	} else if (obj.value == 1) {
		document.getElementById('nameLabel').style.backgroundColor = '#e2d9ba';
		document.getElementById('emailLabel').style.backgroundColor = '#e2d9ba';
		document.getElementById('telLabel').style.backgroundColor = '#e2d9ba';
		document.getElementById('addressLabel').style.backgroundColor = '';
		document.getElementById('checkaddressLabel').style.backgroundColor = '';
		document.getElementById('checknameLabel').style.backgroundColor = '';
	} else if (obj.value == 2) {
		document.getElementById('nameLabel').style.backgroundColor = '#e2d9ba';
		document.getElementById('emailLabel').style.backgroundColor = '#e2d9ba';
		document.getElementById('telLabel').style.backgroundColor = '#e2d9ba';
		document.getElementById('addressLabel').style.backgroundColor = '#e2d9ba';
		document.getElementById('checkaddressLabel').style.backgroundColor = '#e2d9ba';
		document.getElementById('checknameLabel').style.backgroundColor = '#e2d9ba';
	}
	document.getElementById('strongline').style.display = 'inline';
}

function pictshow(file,width,height,name)
{
	var scrollbars = 0;
	var xbig = (screen.availWidth < width) ? 1 : 0;
	var ybig = (screen.availHeight < height) ? 1 : 0;
	if (xbig) {
		width = screen.availWidth - 20;
		if (!ybig) { height += 20; }
		scrollbars = 1;
	}
	if (ybig) {
		height = screen.availHeight - 40;
		if (!xbig) { width += 20; }
		scrollbars = 1;
	}
	width += 4;
	height += 6;
	var xPos = (screen.availWidth / 2) - (width / 2) - 5;
	var yPos = (screen.availHeight / 2) - (height / 2) - 10;

	//alert('AvH' + screen.availWidth + "\nAvW :" + screen.availHeight + "\n" + width + "\n" + height + "\n" + xPos + "\n" + yPos);
	picture = window.open('',name,'top='+yPos+',left='+xPos+',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars='+scrollbars+',resizable=0,width='+width+',height='+height);
	picture.document.open();
	picture.document.write('<html><head><title>'+page_title+'</title></head><body bgcolor="#ECE9E0" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
	picture.document.write('<center><a href="javascript:window.close()"><img src="'+file+'" border="0" alt="Bezár" style="border: 1px black solid;"></a></center>');
	picture.document.write('</body></html>');
	picture.document.close();
	return false;
}

function sendform(id) {
	document.getElementById(id).submit();
}
