function expand(o) {
	currentObj = document.getElementById(o);

			if (currentObj.style.display != 'block' && currentObj.style.display != 'inline') {
				currentObj.style.display = 'block'; 
			} else {
				currentObj.style.display = 'none';
			}
	}
	
function addBookmark() {
	var title = 'Pryl.se - Annonsera gratis'
	var url = 'http://www.pryl.se'
	if (window.sidebar) //mozilla
		window.sidebar.addPanel(title, url, "");
	else if (window.external) // IE
		window.external.AddFavorite(url, title);
	else
		alert("Din webbläsare stödjer tyvärr inte den här funktionen.");
}