/*
© All rights reserved
Madmedia Communication
geneau@videotron.ca
*/

//-------------------------------------------------------
	function cPlaceWindow()
	{
		this.mPosition = fPosition;
		this.mCentered = fCentered;
		this.mFullScreen = fFullScreen;
	}
//-------------------------------------------------------
	function fPosition(iLeft, iTop)
	{
		moveTo(iLeft, iTop);
	}
//-------------------------------------------------------
	function fCentered(iWindowWidth, iWindowHeight)
	{
		resizeTo(iWindowWidth, iWindowHeight);
		var tScreenWidth = parseInt(screen.width);
		var tScreenHeight = parseInt(screen.height);
		var tPosLeft = (tScreenWidth - iWindowWidth) / 2;
		var tPosTop = (tScreenHeight - iWindowHeight - 100) / 2;
		this.mPosition(tPosLeft, tPosTop);
	}
//-------------------------------------------------------
	function fFullScreen()
	{
		this.mPosition(0, 0);
		
		if (document.layers)
		{
			resizeTo(parseInt(screen.width) - 30, parseInt(screen.height) - 180);
		}
		else
		{
			resizeTo(parseInt(screen.width) - 10, parseInt(screen.height) - 10);
		}
	}
//-------------------------------------------------------

/*

<script src = "oPlaceWindow.js" language="JavaScript"><!--/ Version 1 /--></script>
<script language="JavaScript"><!-- 
//-------------------------------------------------------

	// Details d'utilisation

	// var oPlaceWindow = new cPlaceWindow();
	// oPlaceWindow.mPosition(iLeft, iTop);
	// oPlaceWindow.mCentered(iWindowWidth, iWindowHeight);
	// oPlaceWindow.mFullScreen();

//-------------------------------------------------------
//--></script>

*/

