partstock/includes/java_scripts.php

19 lines
337 B
PHP
Raw Normal View History

2018-12-17 17:50:23 +01:00
<script type="text/javascript" language="JavaScript">
<!--
function ToggleDisplayStyle(ElementId)
{
var Element=document.getElementById(ElementId);
if(!Element)
return true;
if(Element.style.display=="none")
Element.style.display="block";
else
Element.style.display="none";
return true;
}
//-->
</script>