
function confirmRedirect(cText, cLink)
{
 Check = confirm(cText);
 if (Check == true)	 	
 {
  this.location=cLink;
 }
}	

