// Centered Pop-Up Window (v1.0)
// (C) 2002-2003 www.smileycat.com
// Free for all users, but leave in this header

var win = null;
function popUp(PageLink,myWidth,myHeight) {

Features = 'menubar=no,scrollbars=no,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,'Manuok',settings);
  win.window.focus();

}

function reveal() {
	document.getElementById('get_info').style.borderBottom = "dashed #CCCCCC 1px";
	$('get_info').morph('background:#F5F5F5; height:20px;');
	$('get_info_text').appear();
	$('info').fade();
	document.getElementById('clients').style.marginTop = "12px";	
}
function hide() {
	document.getElementById('get_info').style.borderBottom = "dashed #CCCCCC 0px";
	$('get_info_text').fade();
	$('info').appear();
	$('get_info').morph('background:#FFF; height:0px;');
	document.getElementById('clients').style.marginTop = "0px";	
}