	function cPopUpWindow()
	{
		this.pPopName = null;
	
		this.mOpen = fOpen;
		this.mFullScreen = fFullScreen;
		this.mCentered = fCentered;
		this.mPosition = fPosition;
	}
//------------------------------------------------------------------
	function fOpen(sURL, sName, sWidth, sHeight, sScrollBars, sStatusBar)
	{
		this.pPopName = open(sURL, sName, "width=" + sWidth + ",height=" + sHeight + ",scrollbars=" + sScrollBars + ",status=" + sStatusBar);
	}
//------------------------------------------------------------------
	 function fFullScreen(sURL, sName, sScrollBars, sStatusBar)
	 {
	 	this.mOpen(sURL, sName, screen.width, screen.height, sScrollBars, sStatusBar);
		this.pPopName.moveTo(10, 5);
	 }
//------------------------------------------------------------------ 
	 function fCentered(sURL, sName, sWidth, sHeight, sScrollBars, sStatusBar)
	 {
	 	var tPosX = (screen.width - parseInt(sWidth)) / 2;
		var tPosY = (screen.height - parseInt(sHeight)) / 2 - 30;
		this.mPosition(sURL, sName, sWidth, sHeight, sScrollBars, tPosX, tPosY, sStatusBar);
	 }
//------------------------------------------------------------------	 
	 function fPosition(sURL, sName, sWidth, sHeight, sScrollBars, iPosX, iPosY, sStatusBar)
	 {
	 	this.mOpen(sURL, sName, sWidth, sHeight, sScrollBars, sStatusBar);
		this.pPopName.moveTo(iPosX, iPosY);
	 }