﻿function setfocus(formfield)
{
  document.getElementById(formfield).focus();
  //formfield.focus();
  
}

function openWindow(url) 
{ 
  var newWin = window.open(url, 'newWin'); 
} 
			
