﻿// JScript File

function openTandCWindow(Url)
{
  var oChild = window.open(Url, null, 'width=100,height=200,scrollbars=yes,resizable=yes');
  //self.close(); //Warning displayed
  return false;
}