
/*
 * Open a popup window with help page
 */
var helpWin
function helpWin(name){
	helpWin=window.open(name+'.php','helpWin','width=400,height=400,status=yes,scrollbars=yes');
	helpWin.focus();
}