var strUserAgent = navigator.userAgent.toLowerCase();
var isIE = document.all?true:false;
var isOp = (strUserAgent.indexOf('opera')!=-1)?true:false;
function pop(objHedef,strPozel,strPisim,objWidth,objHeight,resizable){
	var strUrl = '';
	if(objHedef.getAttribute) strUrl = objHedef.getAttribute('href');
	if(strUrl=='') strUrl = objHedef.href;
	if(strUrl=='') return true;
	var objWidth = objWidth?objWidth:'600';
	var objHeight = objHeight?objHeight:'300';
	if(!strPozel) strPozel = 'left=150,top=10,width='+objWidth+',height='+objHeight+',scrollbars='+resizable+',resizable='+resizable+',toolbar=no,status=no,menubar=no,location=no';
	if(strUrl) var objPopup = window.open(strUrl,strPisim,strPozel);
	if(objPopup && !isOp) objPopup.focus();
	return (objPopup)?false:true;

}


function highlight(obj){
        if (navigator.appName == "Microsoft Internet Explorer") {
	obj.style.backgroundColor = "#FFFFFF";
}
	}
function nolight(obj){
if (navigator.appName == "Microsoft Internet Explorer") {
        obj.style.backgroundColor = "";
}
}

