
//----------------------------------------------------------------------
// Modal
//----------------------------------------------------------------------

var objModal;

function JS_Modal_Show ()
{
	// hide selects if IE6
	bIsIE6 = /msie|MSIE 6/.test(navigator.userAgent);
	if ( bIsIE6 )
	{
		var arSelects = document.getElementsByTagName("select");
		for ( var n=0; n<arSelects.length; n++ ) arSelects[n].style.display = "none";
	}
	
	// require modal item to be on the page
	objModal = document.getElementById("divModal");
	objModal.style.display = "block";
	
	return true;
}

function JS_Modal_Hide ()
{
	if ( objModal ) objModal.style.display = "none";
}

//----------------------------------------------------------------------
//----------------------------------------------------------------------




