function show_page(page, lang){
	//$('#wrapper').removeShadow();$('#wrapper').removeShadow();
	window.document.getElementById('menu_home').className = '';
	window.document.getElementById('menu_despre').className = '';
	window.document.getElementById('menu_servicii').className = '';
	window.document.getElementById('menu_galerie').className = '';
	window.document.getElementById('menu_contact').className = '';
	window.document.getElementById('menu_masculi').className = '';
	window.document.getElementById('menu_femele').className = '';
	window.document.getElementById('menu_pui').className = '';
	window.document.getElementById('menu_galerie2').className = '';
	window.document.getElementById('menu_' + page).className = 'selected';
	window.frames['content'].location.href = 'inc/' + page + '.inc.php';
	//$('#wrapper').dropShadow({left: -3, top: 3 }); $('#wrapper').dropShadow({left: 3, top: 0 });
}

function show_dog(id){
	var container = window.document.getElementById('thumbnails');
	var a_uri = container.getElementsByTagName('a');
	for(var i=0;i<a_uri.length;i++){
		if (a_uri[i].className=='selected'){
			a_uri[i].className = '';
			a_uri[i].style.opacity=0.5;
			if(a_uri[i].filters) a_uri[i].filters.alpha.opacity=50;
		}
	}
	window.document.getElementById('a_' + id).className = 'selected';
	window.frames['dog'].location.href = 'inc/dog_info.inc.php?id=' + id;
}
function show_dog_on(id){
	var sel_a = window.document.getElementById('a_' + id);
	sel_a.style.opacity=1;
	if(sel_a.filters) sel_a.filters.alpha.opacity=100;
}
function show_dog_off(id){
	var sel_a = window.document.getElementById('a_' + id);
	if(sel_a.className != 'selected'){
		sel_a.style.opacity=0.5;
		if(sel_a.filters) sel_a.filters.alpha.opacity=50;
	}
}

function calcHeight(the_iframe)
{
  //find the height of the internal page
  var the_height = document.getElementById(the_iframe).contentWindow.document.body.scrollHeight;

  //change the height of the iframe
  document.getElementById(the_iframe).height = the_height;
}

function showPedigree(id) {
	var cale = "" + "pedigree.inc.php?id=" + id + "&lang=ro";
	var params  = 'width=1020';
	var latime = (parent.window.innerWidth -1000)/ 2 ;
	var inaltime = 50;
	params += ', height=610' ;
	params += ', scrollbars=no';
	params += ', resizable=no';
	params += ', status=yes';
	xwin = window.open(cale, "Pedigree", params);
	xwin.moveTo(latime,inaltime);
	xwin.focus();
}
