function bookmark(){
	var url = "http://www.ccdiet.com";
	var title = "The Best Diet: constant calorie diet";
	if(document.all)
		window.external.AddFavorite(url,title)
}

function showChildWindow(url, width, height) {
    var childWindow = window.open(url,"childwin","width="+width+",height="+height+",menubar=no,scrollbars,status=no");	
}

function showHide(id){
	var obj = document.getElementById(id);
	if (obj){
	  if(obj.style.display == 'block'){
		obj.style.display = 'none';
	  }else{
		obj.style.display = 'block';
	  }
	}

	if(obj.id=='RCS'){
		showHide('RCS1');
	}
}


function showStatus(msg){
   window.status=msg;
}
