
function handleLink(url,id) {
	//console.log("handleLink('"+url+"','"+id+"') called.");
	document.cookie="_windowName="+escape(window.name);
	if (url.indexOf('_popupPageName=') > 0 && url.indexOf('_startPopup=true') > 0) {
		var target	= url.split('_popupPageName=',2)[1].split('&',2)[0];
		var url2	= url.split('_startPopup=true&');
		url2		= url2.join('');
		target		= "popupWindow_" + target + "_" + (id ? id : 0);
		win = window.open(url2,	target, "menubar=yes,width=950,height=700,toolbar=no,scrollbars=yes");
		if (!win) {
			//Catch the popup blocker
			alert('Please disable your popup blocker!!');
		}
		else {
			win.focus();
		}
	}
	else if (url.indexOf('_ajaxReplace=') > 0) {
	}
	else if (url.indexOf('_overlayName=') >0 ) {
	}
	else
		//window.location = url;
		return true;
	return false;
}