function init_highslide()
{
	hs.graphicsDir = _LA+'js/highslide/graphics/';
	//hs.align = 'center';
	hs.transitions = ['expand', 'crossfade'];
	hs.outlineType = 'glossy-dark';
	hs.wrapperClassName = 'dark';
	hs.fadeInOut = true;
	//hs.dimmingOpacity = 0.75;
}

function Hide(obj, parent) {
  document.getElementById(obj).style.display="none";
  }
function Show(obj, parent) {
  document.getElementById(obj).style.display="";
  }
function SendMail(value){
	var req = new JsHttpRequest();
	req.onreadystatechange = function() {
			if (req.readyState == 4) {
				document.getElementById('idfbform').innerHTML = req.responseText;
			}
		}
	req.open(null, _LA+'inc/sendmail.php', true);
	req.send( { q: value } );
}

