/*OPEN|DIV|CLOSE|DIV:BEGIN*/
function setVisibility(id, visibility) {
  document.getElementById(id).style.display = visibility;
}
function display(div) {
  document.getElementById(div).style.display = "block";
}
function wp1details() {
  document.getElementById("wp1details").style.display = "block";
  document.getElementById("wp2details").style.display = "none";
  document.getElementById("wp3details").style.display = "none";
  document.getElementById("wp4details").style.display = "none";
}
function wp2details() {
  document.getElementById("wp1details").style.display = "none";
  document.getElementById("wp2details").style.display = "block";
  document.getElementById("wp3details").style.display = "none";
  document.getElementById("wp4details").style.display = "none";
}
function wp3details() {
  document.getElementById("wp1details").style.display = "none";
  document.getElementById("wp2details").style.display = "none";
  document.getElementById("wp3details").style.display = "block";
  document.getElementById("wp4details").style.display = "none";
}
function wp4details() {
  document.getElementById("wp1details").style.display = "none";
  document.getElementById("wp2details").style.display = "none";
  document.getElementById("wp3details").style.display = "none";
  document.getElementById("wp4details").style.display = "block";
}
function wpdclose() {
  document.getElementById("wp1details").style.display = "none";
  document.getElementById("wp2details").style.display = "none";
  document.getElementById("wp3details").style.display = "none";
  document.getElementById("wp4details").style.display = "none";
}
/*OPEN|DIV|CLOSE|DIV:END*/

/*SUBNAV:BEGIN*/
function loadpsn() {
	var obj = document.getElementById('n02');
	if (!obj) return;
	var o = document.getElementById('portfolio');
	if (!o) return;
	obj.onmouseover = o.onmouseover = function() {
		obj.style.display = 'block';
		o.style.display = 'block';
	}
	obj.onmouseout = o.onmouseout = function() {
		o.style.display = 'none';
	}
}
function loadhpsn() {
	var obj = document.getElementById('n06');
	if (!obj) return;
	var o = document.getElementById('hostingplans');
	if (!o) return;
	obj.onmouseover = o.onmouseover = function() {
		obj.style.display = 'block';
		o.style.display = 'block';
	}
	obj.onmouseout = o.onmouseout = function() {
		o.style.display = 'none';
	}
}
/*SUBNAV:END*/