/* Javascript for podcasteredge engine */

/*Play File*/
function PlayFile(Audio, Title)
{
	var hideoutPop = window.open('player/?file='+Audio+'&title='+Title,"Hideout_Popup_Player", 'toolbar=0,status=0,resizable=0,width=404,height=172')
	hideoutPop.focus();
}

/*Play List*/
function PlayList(Url)
{
	var hideoutPop = window.open('player/?playlist='+Url,"Hideout_Popup_Player", 'toolbar=0,status=0,resizable=0,width=404,height=172')
	hideoutPop.focus();
}

/*Highlight Row*/
function HR(Row, Color)
{
	Row.style.backgroundColor = Color;
}

function NavCat(CatID)
{
	document.categorydata.CatID.value = CatID;
	document.categorydata.submit();
}