/*  helpp - helpl - helpe - help - helpm  - window-position*/
/*  - KSB updated 2000-11-12 - */

/* portrait w300-h400 */
function helpp(name) {
helpWindow = window.open(name,"helpWinp","toolbar=no,scrollbars=no,location=no,width=300,height=400");
helpWindow.focus();
	}

/* landscape w400-h300 */
function helpl(name) {
helpWindow = window.open(name,"helpWinl"," titlebar=no,toolbar=no,scrollbars=no,location=no,width=400,height=300");
helpWindow.focus();
	}	

/* external w625-h500 */
function helpe(name) {
helpWindow = window.open("http://"+name,"helpWine","toolbar=no,scrollbars=no,location=no,width=625,height=500");
helpWindow.focus();
	}	

/* internal w440-h410 */

function helpi(name) {
helpWindow = window.open(name,"helpWin","titlebar=no,toolbar=no,scrollbars=yes,location=no,width=440,height=410");
helpWindow.focus();
	}

/* main window position, size, status-text*/
function sizeWindow() {
window.moveTo(5,5);
window.resizeTo(745,735);
window.status="A la découverte des traces du Train des Pignes";
        }

