
function openWin(win,name) {
		var newWin= window.open(win,"newWin","height=450 width=600 scrollbar=yes menubar=no");
	}

function setfocus(el)
{
	el.select();
	el.focus();
}

function isEmpty(field){
  str = field.value;
  if(str == "") {  // make sure not to put a space between those quotes
    return true;
    }
  else {
    for(j=0; j<str.length; j++) {
      if(str.charAt(j) != " ") {  // make sure to put a space between those quotes!
        return false;
        }
      }
    }
  return true;
  }

function printTime(){
	document.write("HERE I AM");
	var time;
	time = getTime()
	document.write(time);
}