	function OpenPopupWindow( strURL, strWindowName, intHeight, intWidth, strLeftAlingment, strTopAlingment, blnResize ) {
		var intAvailableHeight = screen.availHeight;
		var intAvailableWidth = screen.availWidth;
		var intLeft = null;
		var intTop = null;
		if( strLeftAlingment == 'center' )
			intLeft = ( intAvailableWidth / 2 ) - ( intWidth / 2 );
		else if( strLeftAlingment == 'right' )
			intLeft = ( intAvailableWidth ) - ( intWidth + 10 );
		else if( strLeftAlingment == 'left' )
			intLeft = 0;

		if( strTopAlingment == 'center' )
			intTop = ( intAvailableHeight / 2 ) - ( intHeight / 2 );
		else if( strTopAlingment == 'bottom' )
			intTop = ( intAvailableHeight ) - ( intHeight + 10 );
		else if( strTopAlingment == 'top' )
			intTop = 0;
		if( blnResize == null )
			blnResize = true;

		open( strURL, strWindowName, 'width=' + intWidth + ',height=' + intHeight + ( ( intTop == null )? '' : ',top=' + intTop ) + ( ( intLeft == null )? '' : ',left=' + intLeft ) + ',alwaysLowered=0,alwaysRaised=0,channelmode=0,dependent=0,directories=0,fullscreen=0,hotkeys=0,location=0,menubar=0,resizable=' + ( ( blnResize )? '1' : '0' ) + ',scrollbars=0,status=0,titlebar=0,toolbar=0,z-lock=0' );
	}