    function sbm_Window(url,title){
        var title=escape(title);
        url=encodeURIComponent(url) + encodeURIComponent(title);
        var Newsbm=window.open(url,'name',"width=1000,height=500,directories=no,menubar=no,toolbar=no,scrollbars=yes,left=0,top=0,screenX=0,screenY=0");
    }
    function sbm_Window(sbm_url,url,title){
        url = sbm_url + encodeURIComponent(url)  + "&title=" + encodeURIComponent(title);
        var Newsbm=window.open(url,'name',"width=1000,height=500,directories=no,menubar=no,toolbar=no,scrollbars=yes,left=0,top=0,screenX=0,screenY=0");
    }
    artTitle=document.title;

    var timeout	= 500;
    var closetimer	= 0;
    var socialList	= 0;
    
    // open hidden layer
    function socialOpen(id) {	
	    // cancel close timer
	    socialCancelclosetime();

	    // close old layer
	    if(socialList) socialList.style.display = 'none';
        // get new layer and show it
	    socialList = document.getElementById(id);
	    socialList.style.display = 'block';
    }
    // close showed layer
    function socialClose(){
	    if(socialList) socialList.style.display = 'none';
    }
    // go close timer
    function socialClosetime(){
	    closetimer = window.setTimeout(socialClose, timeout);
    }
    // cancel close timer
    function socialCancelclosetime(){
	    if(closetimer)	{
		    window.clearTimeout(closetimer);
		    closetimer = null;
	    }
    }
    // close layer when click-out
    document.onclick = socialClose;