//print function
function PrintPage()
{
	window.print();
}

function BookmarkMembers()
{
	var ver = navigator.appName;
	var num = parseInt(navigator.appVersion);
	
	if ((ver == "Microsoft Internet Explorer")&&(num >= 4)) {
		window.external.AddFavorite("http://www.peoplecare.com.au/members/","Lysaght Peoplecare Members Site");
	} else {
		window.location.href = "/members/Bookmark.shtml";
	}
}

function BookmarkProspective()
{
	var ver = navigator.appName;
	var num = parseInt(navigator.appVersion);
	
	if ((ver == "Microsoft Internet Explorer")&&(num >= 4)) {
		window.external.AddFavorite("http://www.peoplecare.com.au/prospective/","Lysaght Peoplecare Site");
	} else {
		window.location.href = "/prospective/Bookmark.shtml";
	}
}

//For popup window (without toolbar)
function popup(thePage, theSectionAnchor) { //v2.0
	var winName = "popup"
  	var features= "scrollbars=yes,toolbar=no, location=0,resizable=0,width=575,height=500"
  	window.open("/popups/" + thePage + "#" + theSectionAnchor,winName,features);
}

//For popup window (without toolbar)
function popupExternal(thePage) { //v2.0
	var winName = "popup"
  	var features= "scrollbars=yes,toolbar=yes, location=0,resizable=1"
  	window.open(thePage,winName,features);
}