	function viewNofiImage(obj)
	{
			srcImages = document.getElementById("viewImg"); 
			if(srcImages)
			{
			
				nofi_opacity(25,"viewImg");

				srcImages.setAttribute("transparenz",25);
				var orgWidth = parseInt(obj.getAttribute("orgWidth"),10);
			    var fieldWidth = parseInt(obj.getAttribute("fieldWidth"),10);
			    if( fieldWidth < orgWidth)
				{
					srcImages.setAttribute("width",	fieldWidth -5 );		
				}else{
					srcImages.setAttribute("width",	orgWidth );		
				}
				srcImages.setAttribute("src",	obj.getAttribute("src"));
				nofi_opacity_effect(100,1,"viewImg");
				elem = document.getElementById("imgTitle");
				elem.innerHTML = obj.getAttribute("imageTitle");
			}
	}
	
	function nofiGalleryNewSearch()
	{
	    document.forms["nofi_gallery"].method ="post";
		document.forms["nofi_gallery"].limit.value = "0";
	    document.forms["nofi_gallery"].action="../Site/Include02.php";
	    document.forms["nofi_gallery"].submit();
	}
	
	function firstPage()
	{
	    newLimit = 0;
	    document.forms["nofi_gallery"].limit.value = newLimit;
	    document.forms["nofi_gallery"].method ="post";
	    document.forms["nofi_gallery"].action="../Site/Include02.php";
	    document.forms["nofi_gallery"].submit();
	}
	function prevPage()
	{
	    var dataCount = parseInt(document.forms["nofi_gallery"].dataCount.value,10);
	    var newLimit = parseInt(document.forms["nofi_gallery"].limit.value,10);
	    var pageSize = parseInt(document.forms["nofi_gallery"].pageSize.value,10);
	    newLimit = newLimit - pageSize;
		if(newLimit < 0)
		{
		    newLimit = 0;
		}
	    document.forms["nofi_gallery"].limit.value = newLimit;
	    document.forms["nofi_gallery"].method ="post";
	    document.forms["nofi_gallery"].action="../Site/Include02.php";
	    document.forms["nofi_gallery"].submit();
	}
	function nextPage()
	{
	    var dataCount = parseInt(document.forms["nofi_gallery"].dataCount.value,10);
	    var newLimit = parseInt(document.forms["nofi_gallery"].limit.value,10);
	    var pageSize = parseInt(document.forms["nofi_gallery"].pageSize.value,10);
	    newLimit = newLimit + pageSize;
		if(dataCount <= newLimit)
		{
		    newLimit = newLimit - pageSize;
		}
	    document.forms["nofi_gallery"].limit.value = newLimit;
	    document.forms["nofi_gallery"].method ="post";
	    document.forms["nofi_gallery"].action="../Site/Include02.php";
	    document.forms["nofi_gallery"].submit();
	}
	function lastPage()
	{
	    var dataCount = parseInt(document.forms["nofi_gallery"].dataCount.value,10);
	    var newLimit = parseInt(document.forms["nofi_gallery"].limit.value,10);
	    var pageSize = parseInt(document.forms["nofi_gallery"].pageSize.value,10);
	    newLimit = dataCount - pageSize;
	    if(newLimit <= 0)
		{
		    newLimit = 0;
		}else{
			
		    if(newLimit < pageSize)
			{
			    newLimit = pageSize;
			}
		}
	    document.forms["nofi_gallery"].limit.value = newLimit;
	    document.forms["nofi_gallery"].method ="post";
	    document.forms["nofi_gallery"].action="../Site/Include02.php";
	    document.forms["nofi_gallery"].submit();
	}

	function scaleFirstImage(orgWidth,fieldWidth)
	{
		    srcImages = document.getElementById("viewImg"); 
			if(srcImages)
			{
				if(fieldWidth < orgWidth)
				{
					srcImages.setAttribute("width",	fieldWidth -5 );		
				}else
				{
					srcImages.setAttribute("width",	orgWidth);		
				}
			}				
			elem = document.getElementById("imgTitle");
			elem.innerHTML = srcImages.getAttribute("imageTitle");
	}

	function ViewGalleryObjectEdit(id)
	{
		var strLink = "../Site/ViewEdit.php?ObjectID=" + id + "&IsPopup=1";
		AdminWindow = window.open(strLink,"ObjectBearbeitung","width=700,height=680,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes")
	}

	function ViewGalleryObjectPrint(id)
	{
		var strLink = "../Site/ViewPrint.php?ObjectID=" + id + "&IsPopup=1";
		AdminWindow = window.open(strLink,"ObjectPrint","width=700,height=680,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes")
	}
	
	function ViewGalleryObjectNew(objParent)
	{
		var strLink = "../Site/ViewEdit.php?Status=NewObject&m_ID12=" + objParent + "&IsPopup=1&noResize=true";
		window.open(strLink,"ObjectBearbeitung","width=700,height=680,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes")
	}

	function DeleteGalleryObject(id)
	{
		if(confirm("Wollen Sie dieses Bild wirklich aus der Galerie entfernen?"))
	    {
			document.forms["nofi_gallery"].ObjectID.value = id;
		    document.forms["nofi_gallery"].Status.value = "DeleteObject";
		    document.forms["nofi_gallery"].method ="post";
		    document.forms["nofi_gallery"].action="../Site/Include02.php";
		    document.forms["nofi_gallery"].submit();
	    }
	}
	function RefreshGallery()
	{
	    document.forms["nofi_gallery"].method ="post";
	    document.forms["nofi_gallery"].action="../Site/Include02.php";
	    document.forms["nofi_gallery"].submit();
	}
	function ViewGalleryCategoryEdit(keykopfid)
	{
		var strLink = "../Site/AdminApplication.php?Anzeige=ViewKeyWert&Status=NoStatus&m_ID9=" + keykopfid + "&makeReload=1";
		window.open(strLink,"winInfo","width=400,height=450,toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes")
	}
	


