function openHelpWindow(guid, helppage, index){			
	var x, y;
	var w, h;
	var oWin = null;
	var urlString;
	
	w = 900;
	h = 700;

	x = window.screen.width/2 - w/2;
	y = window.screen.height/2 - h/2;	
	urlString = helppage+"?GUID=" + guid + "&newWindow=true#" + index;
	
	oWin = window.open (urlString, "Report", "width=" + w + ",height=" + h + ",menubar=no,scrollbars=yes,toolbar=no,resizable=yes,left=" + x + ",top=" + y);	
	
	oWin.focus();
}

function HelpWindow(url) {
	var x, y;
	var w, h;

	w = 900;
	h = 700;

	x = window.screen.width/2 - w/2;
	y = window.screen.height/2 - h/2;	
	
	var oWin = window.open (url, "Report", "width=" + w + ",height=" + h + ",menubar=no,scrollbars=yes,toolbar=no,resizable=yes,left=" + x + ",top=" + y);	
	
	oWin.focus();
}

