// Javascrip document for all general functions:

<!--

function hideElements(id) {
document.getElementById(id).style.visibility="hidden";
}

function showElements(id) {
document.getElementById(id).style.visibility="visible";
}
   
function changeProp(objId,x,Prop,Value) { //v9.0
  var obj = null; with (document){ 
  if (getElementById)
  obj = getElementById(objId);
  }
  if (obj){
    if (Value == true || Value == false)
      eval("obj.style."+Prop+"="+Value);
    else eval("obj.style."+Prop+"='"+Value+"'");
  }
}

function changeParentProp(objId,x,Prop,Value) { //v9.0
  var obj = null; with (document){ 
  if (parent.document.getElementById)
  obj = parent.document.getElementById(objId);
  }
  if (obj){
    if (Value == true || Value == false)
      eval("obj.style."+Prop+"="+Value);
    else eval("obj.style."+Prop+"='"+Value+"'");
  }
}

function getIt(loc) {
	window.location.href = loc;
}

function getItX() {
	loc=document.getElementById('download').innerHTML;
	window.location.href = loc;
}

function getItXParent() {
	loc=parent.document.getElementById('download').innerHTML;
	window.parent.location.href = loc;
}

function gotoURL(loc) {
	location = loc;
}

//-->

