// JavaScript Document
if (parent.location.href == self.location.href)
{
var loc = new String(window.location);
var loc2;
if (loc.indexOf(".com/") > 0)
    loc2 = loc.substring(loc.indexOf(".com/")+5);
else if (loc.indexOf(".it/") > 0)
    loc2 = loc.substring(loc.indexOf(".it/")+4);

location.href = "../default.aspx?myUrl="+loc2;
}