<!--

function help(vAction,vAnchor)
{
	if (document.all) {
		var hvalue = (screen.height - 400) / 2;
		var wvalue = (screen.width - 270) / 2; }
	else if (document.layers) {
		var hvalue = (screen.availHeight - 400) / 2;
		var wvalue = (screen.availWidth - 270) / 2;
	}
	 new_win = window.open('/help/index.cfm?page='+vAction+'&anchor='+vAnchor,'help','width=270,height=400,scrollbars=yes,resizable=yes,screenX='+wvalue+',screenY='+hvalue+',left='+wvalue+',top='+hvalue);
	new_win.focus();
}

function loadlogin() {
	
	var hvalue = screen.availHeight - 28;
	var wvalue = screen.availWidth - 8;
	
	 new_win = window.open('http://www.sitewizard.com.au/manage/index.cfm?uiskin=site7&logout=1','sitewizard','width='+wvalue+',height='+hvalue+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,screenX=0,screenY=0,left=0,top=0');
	new_win.focus();
}

function morehelp(vAction,vAnchor)
{
	if (document.all) {
		var hvalue = (screen.height - 370) / 2;
		var wvalue = (screen.width - 240) / 2; }
	else if (document.layers) {
		var hvalue = (screen.availHeight - 370) / 2;
		var wvalue = (screen.availWidth - 240) / 2;
	}
	 new_win = window.open('/help/index.cfm?page='+vAction+'&anchor='+vAnchor,'morehelp','width=270,height=400,scrollbars=yes,resizable=yes,screenX='+wvalue+',screenY='+hvalue+',left='+wvalue+',top='+hvalue);
	new_win.focus();
}


/*
Purpose:     Will open a Pop-up Window

Description: The link/call will need to pass a URL, a Name for the window, as well as any 
             parameters for the window it will need (size, scrolling, etc)
*/


function openWindow(theURL, windowName, features) {
      window.open(theURL, windowName, features);
} // openWindow


//-->