
function ShowHide( showId, hideId )
{
    var show = document.getElementById( showId );
    var hide = document.getElementById( hideId );
    
    show.style.display = "block";
    hide.style.display = "none";
}


if (top.location!= self.location) {
			top.location = self.location.href
		}
		


