var cstrDateFormat = "dd/mm/yyyy";

function VirtualPath(strFilePath)
{
	var intPos;
	
	if ((intPos = strFilePath.lastIndexOf("/")) > -1)
	{
		return strFilePath.substring(0, intPos);
	}
}

function SwapImage(objImg, strPath)
{
	objImg.src = strPath;
}

function HighLight(objRow)
{
	objRow.style.color = 'black';
	objRow.style.backgroundColor = '#CBFD08' //'#CDCDCD';
}

function UnHighLight(objRow)
{
	objRow.style.color = 'black';
	objRow.style.backgroundColor = '#FFFFFF';
}

function OnBrowse(strURL)
{
	if (strURL.indexOf("http://") == -1)
		window.open("http://" + strURL);
	else
		window.open(strURL);
}

function OnClose()
{
	window.close();
}

function OnArticle(strArtID)
{
	if (strArtID == '')
	{
		return;
	}
		
	var strWinSettings = "center=yes,resizable=no,height=600px,width=800px,status=no,help=no";
	window.open("Article.aspx?ArtID=" + strArtID, "Article", strWinSettings);
}
