// Programmer » Saeed Dabir Sepehri       E-mail » design@raykaict.com
		var mytop;
		var myparent;
		var myloc;
		mytop = "";
		myparent = "";
		myloc ="";
		mytop = "" + top.location;
		myparent = "" + parent.location;
		myloc = "" + document.location;
		if( myloc == myparent && myloc == mytop && mytop == myparent )
		{
			var i;
			var mypath;
			i = myloc.indexOf("http://");
			mypath = "" + myloc.substring(i+7,myloc.length);
			if(mypath.indexOf("/",mypath.length-2)>0)
				mypath = mypath.substring(0,mypath.length-1);
			i = mypath.indexOf("?");
			if(i>0)
			{
				myparent = "" + mypath.substring(0,i);
				mytop = "" + mypath.substring(i+1,mypath.length);
				mypath = "" + myparent + "&" + mytop;
			}
			top.location = "http://www.raykaict.com/default.aspx?path=" + mypath;
		}
		window.status = window.document.readyState;