//Adicionar aos favoritos
function CreateBookmarkLink() {

	title = "Wohh Store"; 
	url = "http://www.wohh-store.com";
	
	if (window.sidebar) { //Firefox
	
		window.sidebar.addPanel(title, url,"");
		
	} else if( window.external ) { // Internet Explorer
	
		window.external.AddFavorite( url, title); 
		
	}else if(window.opera && window.print) { // Opera
	
		alert(bookmark_msg);
	
	}else{
	
		alert(bookmark_msg);
		
	}
}

function clear_msg_erro(){
	document.getElementById('msg_erro').innerHTML="";
}


function redirect(targeturl){
	window.location = targeturl;
	//setTimeout('redirect(targeturl)', 3000);
}
