

//var oPopup = window.createPopup();
function showTip(index)
{
	//window.setTimeout("showPop(" + index + "," + event.clientX + "," + event.clientY + ")",1000);
	document.getElementById("promptSpan").innerHTML = popArray[index];
	
}

function hideTip()
{
	//oPopup.hide();
	document.getElementById("promptSpan").innerHTML = ""
}

function showPop(index,x,y)
{
	x = x + 10;
	y = y + 40;
	var oPopBody = oPopup.document.body;
    oPopBody.style.backgroundColor = "#cccccc";
    oPopBody.style.border = "solid black 1px";
	oPopBody.style.fontFamily = "Arial, Helvetica, sans-serif";
	oPopBody.style.fontSize = "12px";
	oPopBody.style.padding = "3px";
    oPopBody.innerHTML = popArray[index];
    oPopup.show(x, y, 150, 100, document.body);
	
}


//put popup text in here

var popArray = new Array();
popArray[0] = "Add a New Channel to your library";
popArray[1] = "Add a New Category to the active channel. Click on a channel name to make it active";
popArray[2] = "Create a new media item for your library";
popArray[3] = "Move media items up or down the category list";
popArray[4] = "To edit an item, Select the item and change its properties in the panel to the right";
popArray[5] = "Type a title for your video";
popArray[6] = "Add a description for your video";
popArray[7] = "Assign your video to one or more categories in the player. Use Control Click to select multiple categories.";
popArray[8] = "Select a thumbnail image for this video";
popArray[9] = "Select a filename for this video";
popArray[10] = "If you have a Lightcast Media account you can enter the video ID here";
popArray[11] = "Use this link to link directly to this video";
popArray[12] = "This is the text for the popup";
popArray[13] = "This is the text for the popup";
popArray[14] = "This is the text for the popup";
popArray[15] = "Add an intro for your video";
popArray[16] = "Add a promotion to your video";
popArray[17] = "Add a download to your audio";
popArray[18] = "Select an image for your audio";
