	
		/* ----------------------------------------------
			fnSetInfo sets the data format in the first 
			parameter and provides the text to drop in second.
			The second line copies text.
		----------------------------------------------*/
		function dragItemStart( value )
		{
			event.dataTransfer.setData("Text", value ); 
			event.dataTransfer.effectAllowed = "copy";                 
		}

		function dragCancelDefault()
		{
		        event.returnValue = false;                  
  			event.dataTransfer.dropEffect = "copy";  
		}
		

		function goItemDetail( ItemNumber, detailPage )
		{
		var url = detailPage + "?ItemCode=" + ItemNumber

			if( window.top == self )
			{
				window.location = url;
			}
			else
			{
				window.top.frames["CONTENT"].location = url;
			}
		}		
		
	