function check( url, text )
{
  checkV = confirm( text );
  if( checkV == true )
  {
    window.location.href=url;
  }
}
