﻿// JS File


function GetPageFrame()
{
var frm = top.frmContent.location ; 
if(frm != document.getElementById("hdnPage").value)
{
top.frmContent.location = document.getElementById("hdnPage").value  ;
}
//window.location.reload();
}


function PutPageFrame()
{
 document.getElementById("hdnPage").value  =  top.frmContent.location; 
}
