function replace_element(element_id){

if (document.getElementById(element_id).style.display == "block"){
	    document.getElementById('stat'+element_id).innerHTML = '<img src=\'img/stat_m.gif\'  />';
	}else{
		document.getElementById('stat'+element_id).innerHTML = '<img src=\'img/stat_p.gif\'  />';
	}
	
}

function element_onoff(element_id){
	//alert(document.getElementById('konyvjelzok').style.display.value);
	if (document.getElementById(element_id).style.display == "block"){
	    document.getElementById(element_id).style.display = "none";
	}else{
    	document.getElementById(element_id).style.display = "block";	
	}
}
ns = (document.layers) ? 1:0;
ie = (document.all) ? 1:0;

function openWindow_image(sourceFile, windowWidth, windowHeight, distanceTop, distancLeft)
{
	pictureWindow = window.open("", "plainwindow","width=" + windowWidth + ",height=" + windowHeight + ",top=" + distanceTop + ",left=" + distancLeft + ",toolbar=0,location=0,resizable=0,status=0,menubar=0,fullscreen=0,scrollbars=0");

	pictureWindow.document.write("<html>\n<head>\n\t<title>1001 Fenyőbútor</title>\n</head>\n<body marginwidth=\"0\" marginheight=\"0\" topmargin=\"0\" leftmargin=\"0\">\n<A HREF=\"javascript: window.close();\" ONMOUSEOVER=\"window.status='Ablak bezárása'; return true;\" ONMOUSEOUT=\"window.status='';\"><img src=\"" + sourceFile + "\" border=\"0\" alt=\"Ablak bezárása\">\n<script language=\"javascript\">this.focus();</script></body>\n</html>");
}



