function OpenWindow(url, name)
{
window.open (url, name, "height=600,width=550,status=yes,toolbar=no,menubar=no,location=no,resizable=yes,scrollbars=yes");
}

function ReloadParent()
{
self.opener.location.href=self.opener.location.href;
}

function ReloadParentURL(url)
{
self.opener.location.href=url;
}

function CloseByInterval(interval)
{
window.setTimeout("self.close()", interval);
}
