
if( self.location == top.location ) 
{
	page = escape( self.location.pathname );
    top.location.href = 'http://www.ariescode.com/index.php?' + page;
}

else if( self.location == window.location &&
         self.parent.location.hostname != "www.ariescode.com" )
{
    page = self.location.pathname + self.location.search; 
	self.parent.location.href = 'http://www.ariescode.com/index.php?' + page;
}

