
/* ----------------------------------------------
	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;
}		

function goItemGallery( URL ) 
{
	var winWidth		= 640;
	var winHeight		= 480;
	var winTop			= ( screen.height / 2 ) - winHeight / 2;		
	var winLeft			= ( screen.width / 2 ) - winWidth / 2;
	var windowFeatures	= "toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=" + winWidth + ",height=" + winHeight + ",left=" + winLeft + ",top=" + winTop;
	window.open( URL, "ItemGalleryWindow", windowFeatures );
}

