
/* global.js : Andrew Smith <andrew@arcticdesigns.us> : 10 Mar 2008 */

function submitPost ( link, id, confirm ) {
	if ( window.confirm( confirm ) ) 
	{
		var f = document.createElement('form'); 
		f.style.display = 'none'; 
		link.parentNode.appendChild(f); 
		f.method = 'POST'; 
		f.action = link.href; 
		
		var s = document.createElement('input'); 
		s.setAttribute('type', 'hidden'); 
		s.setAttribute('name', 'id'); 
		s.setAttribute('value', id); 
		f.appendChild(s);
		f.submit();
	}
	return false;
}
