﻿function showdirections(url, title)
{
  var html;
  
  html = '<html><head><title>'+title+'</title></head><body>';
  html += '<iframe width="640" height="480" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="'+url+'"></iframe>';
  html += '</body></html>';
  newwindow = window.open("", "_blank", "toolbar=0,status=0,height=530, width=690, scrollbars=1, resizable=1");
  newwindow.document.write(html);
  
  return true;
}
