function readCookie(name){
	str=document.cookie;
    str=str.replace(/\s/g,"");
    var pairs=str.split(";");
    for (var i=0;i<pairs.length;++i) {
        var pairsub=pairs[i].split("=");
        if (pairsub[0]==name)
            if (pairsub.length>1) return pairsub[1];
        else return 'null';
    }
    return 'null';
}
function addScvPN(){
	//var scvPN=0;
	scvPN=readCookie("scvPageNum");
	if ('null'==scvPN||scvPN=='') scvPN=0;
	scvPN++;
	var newToday=new Date();
	newToday.setTime(newToday.getTime()+4*60*60*1000);
	document.cookie='scvPageNum=' + scvPN + ';expires=' + newToday.toGMTString() + ';path=/;domain=.059buy.com';
   
	popOpen=readCookie("popOpen");
	if (popOpen=="null"){
		var newToday=new Date();
		newToday.setTime(newToday.getTime()+4*60*60*1000);
		document.cookie='popOpen=n;expires='+newToday.toGMTString()+';path=/;domain=.059buy.com';
	}
}
function popUpWindow(){
	scvPN=readCookie("scvPageNum");
	if ('null'==scvPN||scvPN=='') scvPN=0;
	if (scvPN>0) scvPN--;
	var newToday=new Date();
	newToday.setTime(newToday.getTime()+4*60*60*1000);
	document.cookie='scvPageNum=' + scvPN + ';expires=' + newToday.toGMTString() + ';path=/;domain=.059buy.com';
	popOpen=readCookie("popOpen");

	urlhref=window.location.href;
	splurlhref=urlhref.split("/");
	filename=splurlhref[splurlhref.length-1];
	if (filename.substring(0,10)!="fukuan.php"){			
	    if (popOpen!="y"){
		var newToday1=new Date();
		newToday1.setTime(newToday1.getTime()+4*60*60*1000);
		document.cookie='popOpen=y;expires='+newToday1.toGMTString()+';path=/;domain=.059buy.com';
		window.open('http://www.059buy.com/','spy','height=300,width=300,top=1024,left=768,dirctories=no,toolbar=yes,menubar=yes,scrollbars=yes,resizable=yes,location=yes,status=yes');
		}
	}else{
		window.open('http://www.059buy.com/','spy','height=300,width=300,top=1024,left=768,dirctories=no,toolbar=yes,menubar=yes,scrollbars=yes,resizable=yes,location=yes,status=yes');
	}
}