function loadHoleDetails(hole_id) {
	url = '/includes/functions/site_content/holeDescription.php?hole=' + hole_id;
	/*
	//code modified by anjali
	options = 'height=400, width=265, resizable=yes, location=no, menubar=no, status=no, scrollbars=no, toolbar=no, titlebar=yes';
	*/
	options = 'height=600, width=800, resizable=yes, location=no, menubar=no, status=no, scrollbars=yes, toolbar=no, titlebar=yes';
	
	popup = window.open(url, '_blank', options, true);
	popup.focus();
}

function changeLargeGolfImg (img_src) {
	var path = eval(doc + 'img_src' + doc2);
	var img = eval(doc + 'hole_descr_main_img' + doc2);

//	alert(path.value + img_src);	
	img.src = path.value + img_src;
}

