// JavaScript Document\

var hhannaDotComWin = 0;
function showMySite() {
	if(hhannaDotComWin){
		if(!hhannaDotComWin.closed){ hhannaDotComWin.close(); }
	}else{  
	  var left = 50;
	  var top = 50;
	  var width = 700;
	  var height = 500;
	  hhannaDotComWin = open('http://www.hhanna.com', 'hhannaDotComWin', 'toolbar=yes, location=yes, directories=yes, status=yes, menubar=yes, scrollbars=yes, resizable=yes, copyhistory=yes, width='+width+', height='+height+', left='+left+', top='+top+', screenX='+left+', screenY='+top+'');
	}
}

var popUpWin=0;

function popUpWindow(URLStr){

  if(popUpWin){
	  if(!popUpWin.closed){ popUpWin.close(); }
  }
  
  var left = 50;
  var top = 50;
  var width = 600;
  var height = 400;
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=yes, location=yes, directories=yes, status=yes, menubar=yes, scrollbars=yes, resizable=yes, copyhistory=yes, width='+width+', height='+height+', left='+left+', top='+top+', screenX='+left+', screenY='+top+'');
 }

function showLayers() {document.getElementById('right_column').style.visibility = 'visible';}