
var imgPath = "i/b/";

//get browser type
var bName = navigator.appName;
var browser;

if(bName == "Netscape") {
	browser = "nn";
}

if (document.getElementById) {
   browser = "ns6"; 
}

var highColor = "#FFF8D9";
function highlight(obj){
	if (obj.style.backgroundColor != ""){
		obj.style.backgroundColor = "";
	}else{
		obj.style.backgroundColor = highColor;
	}
}

function PencereAc(theURL,winName,features) { 
window.open(theURL,winName,features);
}

function swapPhoto(t,num) {
		window.document.images["photo"].src = t ;
}

	function openWin( windowURL, windowName, windowFeatures ) { 
		return window.open( windowURL, windowName, windowFeatures ) ; 
	} 

