function toggle_div(id)
{
	var oDiv = document.getElementById(id);
	
	if(oDiv.style.display == 'none')
		oDiv.style.display = 'block';
	else
		oDiv.style.display = 'none';
	
	return true;
}


function confirm_url(actiontext, url)
{
	if(confirm("Are you sure you want to " + actiontext + "?") )
		document.location.replace(url);
	return false;
}

function confirm_pop_up(actiontext, url)
{
	if(confirm("Are you sure you want to " + actiontext + "?") )
		pop_up(url);
	return false;
}

function pop_up(url)
{
	window.open(url, null, "status=yes,toolbar=yes,menubar=yes,location=yes");
}