function ReturnIFrameURL()
{
    var s = location.href; 
    s = s.split("/");
    var re = "http:";
    for(i=1;i<s.length;i++)        
    {                
        if (i != 6)
        {                
            re += "/" + s[i];
        }
        else                
        {
            re += "/node_12316.htm"
        }        
    }
   return re;
}
returnUrl = ReturnIFrameURL()
document.write ("<iframe frameborder='no' height='525' marginheight='0'");
document.write ("marginwidth='0' name='sznews_frame' crolling='no'");
document.write ("src='" + returnUrl + "'");
document.write ("width='100%' allowtransparency='yes'></iframe>");


