	
		/* ----------------------------------------------
			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 )
		{
			if( window.top == self )
				window.location = detailPage + "?ItemCode=" + ItemNumber;
			else
				window.top.frames["CONTENT"].location = detailPage + "?ItemCode=" + ItemNumber;
		}		
		
	