// JavaScript Document

	function confirm_single_delete(prompttext,returnlink){
	
		var choice = confirm("Are you sure you wish to delete the following?\n\n"+prompttext+"\n");
		
		if (choice==true){
			window.location = returnlink;	
		} else {
			return false;	
		}
		
	}
	
	function confirm_item_promotion(prompttext,returnlink){
	
		var choice = confirm("Are you sure you wish to promote the following item?\n\n"+prompttext+"\n");
		
		if (choice==true){
			window.location = returnlink;	
		} else {
			return false;	
		}
		
	}
