/* function to create a popup window to search for courses copy-paste the folowing code into a page that needs the popup
search course */ var search_window_popup = 0; var search_window_div = ""; var result_name_div = ""; var result_id_field = ""; var offsety=-300; var offsetx=-100; function getFormVariables(form_name) { var formvars=''; var form=document.forms[form_name]; for(var i=0;i"+ ""+ ""+ "

"+ "Search golf course"+ "

"+ ""+ ""+ "\"close\""+ ""+ ""+ ""+ ""+ results+ ""+ ""+ ""; search_window_div.style.height=""; } function search_course(anchor_id,div_id,id_field,name_div,name_field) { if(search_window_popup == 0) { search_window_popup = new PopupWindow(div_id); search_window_popup.autoHide(); search_window_popup.offsetX = offsetx; search_window_popup.offsetY = offsety; search_window_div = document.getElementById(div_id); } search_course_do("") search_window_popup.showPopup(anchor_id); result_name_div = name_div; result_name_field=name_field; result_id_field = id_field; } function add_course(id, coursename) { search_window_popup.hidePopup(); document.getElementById(result_name_div).innerHTML = coursename; document.getElementById(result_id_field).value = id; document.getElementById(result_name_field).value = coursename; }