
function setFieldValue(field, value) {
	opener.document.getElementById(field).value = value;
	window.close();
}

/*function setFormDate(day, month, year, d, m, y) {
	setFieldValue(day, d);
	setFieldValue(month, m);
	setFieldValue(year, y);
	window.close();
}*/

function new_win(url,options)
{
   var new_window = window.open(url, 'calendar','toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=0, resizable=0, width=420, height=200, top=200, left=200')
   if (window.focus) {new_window.focus()}
}
  
  

