/// Hide button handler////
/// ------ ------ V.1.0 ------ --------- ////
/// GulfNet Solutions Est. //////
/// Web Application Group. //////
/// Programmed by: Amjad Quteifan. //////
//---------------------------------	

function PrintApp() {

	toggle(document.all.HideShow);
	window.print();
	}


function toggle(e) {
  if (e.style.visibility == "hidden") {
     e.style.visibility = "visible";
  } else {
     e.style.visibility = "hidden";
  }
}