
BlogUtils={};

BlogUtils.showElement=function(id) {
	var e1 = document.getElementById(id);
	e1.style.zIndex = 30000;
	e1.style.visibility = "visible";
}

BlogUtils.openFlash=function(id, url, width, height) {
	var e1 = document.getElementById(id);
	
	var divContent = "<div class=\"flashplayer_head\">";
	divContent += "<a href=\"javascript:BlogUtils.hideElement('" + id + "')\">close X</a>";
	divContent += "</div>";	
	divContent += "<embed quality=\"high\" bgcolor=\"#fff\" src=\"";
	divContent += url;
	divContent += "\" type=\"application/x-shockwave-flash\" wmode=\"transparent\" height=\"" + height + "\" width=\"" + width + "\">";
	
	e1.innerHTML = divContent;
	
	this.showElement(id);
}

BlogUtils.hideElement=function(id) {
	var e1 = document.getElementById(id); 
 	e1.style.visibility = "hidden";
 	e1.innerHTML = "empty";
}