// JavaScript Document
function showHide(elementID, style) {
	var displayin, element;
	if (!style) {style='block';}
	element=document.getElementById(elementID);
	if (element) {
		displayin=document.defaultView.getComputedStyle(element,null).display;
//		alert(displayin);
        if (displayin !== 'none'){ 
		   element.style.display = 'none';
		   return false;
		}		
		else {
			element.style.display = style;
			return true;
		}
//		displayout=document.defaultView.getComputedStyle(element,null).display;
//		alert(displayout);
	}
}
