﻿// JScript File
function NewWindow()
{
var s,s1,s2,pos;
if (window == top) {

s=window.location.href;

pos=-1;       
s1 = "_IIS";
pos = s.indexOf(s1);
if (pos == -1)
        {
            s1 = ".com";
            pos = s.indexOf(s1);
        
        }
pos = pos + s1.length+1;
s1 = s.substring(pos, s.length);
s2 = s.substring(0, s.length - s1.length);
window.location.replace(s2 + "Master.aspx?l=" + s1);

               
}
}
