// JavaScript Document
/*
	Help, open PopUp windows
*/
function HelpOpen(LocationHelp, FileHelpName, WindowTitle) {

	var exp=new RegExp("http://", "g");
	if ( exp.test(FileHelpName) ) {
		window.open(FileHelpName, WindowTitle, "");
	} else {
		var tt =(screen.height)/2; 
		var ll =(screen.width)/2 + 200;
		var top=(screen.height - tt)/2;
		var left=(screen.width - ll)/2 ;
	
		window.open(LocationHelp+"/"+FileHelpName, WindowTitle, "width="+ll+",height="+tt+",left="+left+",top="+top+",scrollbars=yes,resizable=yes");
	}
}

