
	function openEdit() {
		openWin( "App?servlet=CmsEditor", "editor", "width=750,height=630,status=yes,scrolling=yes,resisable=yes,menubars=no" );
	
	}

	function openWin( strURL, strWinName, strParameter ) {
		win = window.open( strURL, strWinName, strParameter );
		win.focus();
		win.moveTo( 100, 100 );
	}
	
	function fitImage( imgTarget, intSize ) {
		if ( imgTarget == null ) {
			return;
		}
		
		intWidth = imgTarget.width;
		intHeight = imgTarget.height;
		if ( intWidth > intHeight ) {
			if ( intWidth > intSize ) {
				imgTarget.width = intSize;
				imgTarget.height = intSize * intHeight / intWidth;
			}
		} else {
			if( intHeight > intSize ) {
				imgTarget.height = intSize;
				imgTarget.width = intSize * intWidth / intHeight;
			}
		}

	}
	
	function viewImage( strURL ) {
		strTargetURL = "App?servlet=ImagePreview&image=" + strURL;
		openWin( strTargetURL, 500, 500 );
	}
	
	