//I am the js file for the help popups
function popupHelpWindow(sHelpContents){
	window.open (sHelpContents,"HelpPopup","menubar=0,scrollbars=1,resizable=1,top=120,left=120,width=450,height=450"); 
/*
A window with location bar, status bar, scroll bar and of size 100 X 100
window.open ("http://www.javascript-coder.com",
"mywindow","location=1,status=1,scrollbars=1,
width=100,height=100"); 
*/
	
}
