function show_hide_div(num){

var divv = document.getElementById('showhide'+num);
	
if(divv.style.display==''){
divv.style.display='none';
}
else{
divv.style.display='';
}


}



function goURL(url){

document.location=url;

}


function VidCenter(url,name,w,h){
window.open(url,name,"menubar=no,width="+w+",height="+h+",toolbar=no");
}


function share(u,t,s){
	if(s=='fb'){
		window.open('http://www.facebook.com/sharer.php?u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');return false;
	}
	else if(s=='tw'){
		window.open('http://twitter.com/home?status='+encodeURIComponent('Reading about '+t+' '+u),'sharer','toolbar=0,status=0,width=626,height=436');return false;
	}
	else if(s=='be'){
		window.open('http://www.bebo.com/c/share?Url='+encodeURIComponent(u)+'&Title='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');return false;
	}
	else if(s=='my'){
		window.open('http://www.myspace.com/index.cfm?fuseaction=postto&u='+encodeURIComponent(u)+'&t='+encodeURIComponent(t),'sharer','toolbar=0,status=0,width=626,height=436');return false;
	}
}


function bookmark(url, title){

	  if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {
  window.external.AddFavorite(url,title);
  } else if (navigator.appName == "Netscape") {
    window.sidebar.addPanel(title,url,"");
  } else {
    alert("Press CTRL-D (Netscape) or CTRL-T (Opera) to bookmark");
  }
}