/*function changeDimensions(newHeight, newWidth){
	e=document.getElementById("flash");
	e.style.height = newHeight + 'px';
	e.style.minWidth = newWidth + 'px';
	e=document.getElementById("header");
	e.style.minWidth = newWidth + 'px';
}*/
function confirmDelete(ID, name, type){
	$("#confirm_delete").show();
	$("#confirm_delete #message").html('Are you sure you want to '+type+' '+name+'?<br /><br /><form method="post"><input type="hidden" name="delete" value="'+ID+'" /><input type="submit" class="btn" value="YES" /> <input type="button" class="btn" value="NO" onCLick="hideDelete()" /></form>');
}
function hideDelete(){
	$("#confirm_delete").hide();
}
