
// http://labnol.blogspot.com/2006/01/add-to-favorites-ie-bookmark-firefox.html
function bookmarkIt()
{
	var title=document.title;
	var url=location.href;
	if(window.sidebar) {window.sidebar.addPanel(title,url,"");}
	else if(window.external) {window.external.AddFavorite(url,title);}
	else {alert('Sorry, your browser does not support this function.\nYou must bookmark this page manually.');}
}

function openWin(url)
{
	window.open(url,'Screenshot','width=500,height=400,toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=no,copyhistory=no,resizable=no')
}

function toggleDisplay(show)
{
	$(".answer").css("display","none");
	$(show).css("display","block");
}

function minimize()
{
	$(".answer").css("display","none");
}

function showAll()
{
  $(".answer").css("display","block");
}

function toggleBorders(type)
{
	if(type==1)
	{
		$("#minimize").css("border-color","#666 #666 black black");
	}
	else
	{
		$("#minimize").css("border-color","black black #666 #666");
	}
}