
//        For Show & Hiding of Top_links in Menu page, About Page, Photo Page      Starts   //
var old = 'one';
var sold = 'sone';
function show(a) {
	//document.getElementById(a).blur(); //In Fire Fox to BLUR Option
	var container = ('s' + a);
	document.getElementById(old).className = 'hide';
	document.getElementById(sold).className = 'not_select';
	document.getElementById(a).className = 'show';
	document.getElementById(container).className = 'select';
	old = a;
	sold = container;
}
//        For Show & Hiding of Top_links in Menu page, About Page, Photo Page      Ends   //

//        For Show & Hide of Resturant_Pictures in Photo Page      Starts   //
var roldimage = 'rimageone';
function rimage(i) {
	//document.getElementById(i).blur(); //In Fire Fox to BLUR Option
	document.getElementById(roldimage).className = 'hide';
	document.getElementById(i).className = 'show';
	roldimage = i;
}
//        For Show & Hide of Resturant_Pictures in Photo Page      Ends   //

//        For Show & Hide of Golf_Pictures in Photo Page      Starts   //
var goldimage = 'gimageone';
function gimage(i) {
	//document.getElementById(i).blur(); //In Fire Fox to BLUR Option
	document.getElementById(goldimage).className = 'hide';
	document.getElementById(i).className = 'show';
	goldimage = i;
}
//        For Show & Hide of Golf_Pictures in Photo Page      Ends   //

//        For Show & Hide of Food_Pictures in Photo Page      Starts   //
var foldimage = 'fimageone';
function fimage(i) {
	//document.getElementById(i).blur(); //In Fire Fox to BLUR Option
	document.getElementById(foldimage).className = 'hide';
	document.getElementById(i).className = 'show';
	foldimage = i;
}
//        For Show & Hide of Food_Pictures in Photo Page      Ends   //

//        For Opening Course_popup in New Window      Starts   //
function course_popup()	{
	//document.getElementById('gofl_btn').blur() //In Fire Fox to BLUR Option
	window.open("course_popup.html",null,",width=820,status=yes,scrollbars=1,toolbar=no,menubar=no,location=no");
}
//        For Opening Course_popup in New Window     Ends   //

//        For Closing Course_popup       Starts   //
function wclose(){
		window.close();
}
//        For Closing Course_popup       Ends   //

   //

