function PV_GetCookie(sName)
{
    var aCookie = document.cookie.split( "; " );
    for ( var i=0; i < aCookie.length; i++ )
    {
        var aCrumb = aCookie[i].split( "=" );
        if ( sName == aCrumb[0] )
            return aCrumb[1];
    }
    return null;
}

function PV_Record()
{
    var uvCookie = PV_GetCookie( "UVID" );
    var n = new Date().getTime();
    var c = escape( n * 1000 + Math.round( Math.random() * 1000 ));
    if( uvCookie == null )
    {
        uvCookie = c;
        document.cookie = "UVID=" + uvCookie + ";path=/;expires=Sun, 29 July 2046 00:00:00 UTC;domain=.beijing2008.cn;";
    }
    document.write( "<img src=\"http://pv.beijing2008.cn/pv.gif" + 
                    "?t?=" + c +
                    "?s?=1" +
                    "?u?=" + uvCookie + 
                    "?w?=" + window.screen.width + "*" + window.screen.height +
                    "?p?=" + escape( self.location ) +
                    "?r?=" + escape( document.referrer ) + "\" width=0 height=0 border=0><br />" );
}

var PV_Flag;
if ( !PV_Flag ) PV_Record();
PV_Flag = 1;

/*CMS to open photo slideshow page*/
function CMS_openslidew(url){
	 if(url==null) return false;
	 var newwindow = window.open (url, 'sohuslideshowview', 'width=750,height=620,top=100,left=100,toolbar=no,menubar=no,scrollbars=yes,resizable=no,location=no,status=no');
	 return false;
	 //if(newwindow == null){ }
}
