﻿function hide_show(obj){var p = document.getElementById(''+obj);if(p!=null){if(p.style.display=="none"){p.style.display="block";}else{p.style.display="none";}}}
function RedirectTo(obj){window.location=obj+"";}
function ScrollToElement(theElement){var selectedPosX = 0;var selectedPosY = 0;while(theElement != null){selectedPosX += theElement.offsetLeft;selectedPosY += theElement.offsetTop;theElement = theElement.offsetParent;}window.scrollTo(selectedPosX,selectedPosY);}

