// JavaScript Document

function linkConfirm(link, text)
  {
  	if (window.confirm(text))
	 	   location.href= link;
  }


