/***************************************************************************
                            BROWSER DETECTION
***************************************************************************/

   HM_DOM = (document.getElementById) ? true : false;
   HM_NS4 = (document.layers) ? true : false;
   HM_NS6 = navigator.vendor == ("Netscape6");
   HM_IE = (document.all) ? true : false;
   HM_IE4 = HM_IE && !HM_DOM;
   HM_Mac = (navigator.appVersion.indexOf("Mac") != -1);
   HM_IE4M = HM_IE4 && HM_Mac;
   HM_IsMenu = (HM_DOM || HM_NS4 || HM_NS6 || (HM_IE && !HM_IE4M));

function SendFriend(pageName)
{
	var sPageAddress;
	sPageAddress = window.location.href;
	window.open('http://www.globalpresence.com.au/sendfriend.asp?ws=' + pageName + '&wurl=' + sPageAddress, 'sendWin','toolbar=no,titlebar=no,location=no,directories=no,status=no,menubar=no,resizable=no,copyhistory=no,fullscreen=no,scrollbars=no,top=150,left=190,width=465,height=280');
}

var popup = null;
function openWindow (PAGE, WIDTH, HEIGHT) {
  var winString = "height=" + HEIGHT + ",width=" + WIDTH + ",left=100,top=100,screenX=100,screenY=100,directories=0,location=0,menubar=0,resizable=0,scrollbars=1,status=0,toolbar=0" ;
  if (popup != null) {
  	popup.close();
  } 
    popup = window.open( PAGE, "newWin" , winString);
    popup.focus();
}
