	// Ask user "Are you sure?" before continuing to link
	function confirm_link(strMessage,strUrl)  
		{  
		var retval = confirm(strMessage);  
		if (retval == true)  
		{  
			location.href = strUrl;  
		}  
	} 