function showElement(id) {
	//alert(id);
	var element = document.getElementById(id);
	if (element) {
		element.style.display = ((element.style.display == 'none')
								 ? 'block'
								 : 'none');							 
	}
}
function popUpBetter(PageLink,myWidth,myHeight) {
  Features = 'menubar=no,scrollbars=1,toolbar=no,location=no,directories=no,status=no,resizable=yes';
  var winl = (screen.width-myWidth)/2;
  var wint = (screen.height-myHeight)/2;
  if (winl < 0) winl = 0;
  if (wint < 0) wint = 0;
  var settings = 'height=' + myHeight + ',';
  settings += 'width=' + myWidth + ',';
  settings += 'top=' + wint + ',';
  settings += 'left=' + winl + ',';
  settings += Features;
  win = window.open(PageLink,'Tony Hawk',settings);
  win.window.focus();

}