//Globals.js
//copyright (C) 2003 - Bertrand BOUVERET
//Tous droits réservés

function reload_frames(theLocation)
{
	if (parent.frames.length == 0 || parent.frames[0].name != 'PDA_MENU')
	{
		theUrl="./index.htm";
		if (theLocation != '')
			theUrl=theUrl+"?page="+theLocation;
		top.location=theUrl;
	}
}

function load_window(theLocation)
{
	myWindow=window.open(theLocation, 'PDA_POPUP', 'toolbar=no, location=no, directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes, width=430, height=434');
}

function load_zoom(theLocation, theWidth, theHeight)
{
//Augmenter les dimensions de +25 pour éviter les scrollbars
	myWindow=window.open(theLocation, 'PDA_POPUP', 'toolbar=no, location=no, directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width='+theWidth+',height='+theHeight);
}

