//FUNCOES DO SITE - UserPage

function see_image(new_image) {

	var bigphoto = document.getElementById("bigPhoto");
	
	bigphoto.setAttribute("src", new_image);
	
	document.getElementsByName("bigPhoto")[0].src = new_image;
}

function validate_send_blog(form) {
	
	if (form.blogText.value.search(/^ *?$/) != -1) {
	
		alert("You can't send an empty message.");
		
		form.blogText.focus();
		
		return false;
	}
	
	return true;
}

function delete_blog(id_blog) {
	
	var url = "?userpage/deleteBlogMsg/"+id_blog;
	
	var ok = window.confirm("Are you sure you want delete?");
	if (ok) { 
		
		document.location = url;
	}
}

var mtype = "start";
var sto = 0;
function begin_music(title, file, id) {

	if (mtype == "stop") {
	
		soundManager.stopAll();
		
		mtype = "start";
		
		//clearTimeout(sto);
		
		//document.getElementById('icon_music'+id).src = "images/bt_play.gif";
	}
	else {
					
		soundManager.play(title, file);
		
		mtype = "stop";
		
		//document.getElementById('icon_music'+id).src = "images/bt_stop.gif";
		
		//sto = setTimeout("soundManager.stopAll(); mtype = 'start'; document.getElementById('icon_music"+id+"').src = 'images/bt_play.gif';", 45000);
	}

}