﻿// JScript File
function getPageName()
{

var sPath = window.location.pathname;
var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);

var objFrame=document.getElementById("NewsFrame");

objFrame.src="ASPX Pages/Index.aspx?ID="+ sPage;

}
