function NewWindow(width,height,url) {
	window.open(url,"PopUp","menubars=0,scrollbars=1,resizable=1,height="+height+",width="+width);
}

function openWin( windowURL, windowName, windowFeatures ) {
return window.open( windowURL, windowName, windowFeatures ) ;	}
function popup(url, name, height, width, scrollbars)
{
	var popwin;
	var opts = "toolbar=no,status=no,location=no,menubar=no,resizable=no";
	opts += ",height=" + height + ",width=" + width + ",scrollbars=" + scrollbars;

	popwin = window.open("", name, opts);

	popwin.focus();

	popwin.location = url;

}

function SearchTab(id) {
			tab_prefix				=	'tab';
			total_tab_count 		= 3;
			tab_id						=	tab_prefix + id;
			form_name					=	"search";
			
			var tab_text 			= new Array;
			var tab_source		=	new Array;
			
			tab_text[1]		 		= 'News';
			tab_text[2] 			= 'Businesses';
			tab_text[3] 			= 'Classifieds';
			
			tab_source[1]			=	4;
			tab_source[2]			=	1;
			tab_source[3]			=	2;
		
			/* clear out current tab */
			this_id 					= document.getElementById(tab_id);
			this_id.innerHTML = tab_text[id];
				
			/* reset form value */
			document.search.source.value = tab_source[id];
			
			
			for (i=1;i<=total_tab_count;i++) {
					
					if (i != id) {
							t_tab_id	=	tab_prefix + i;
							that_tab	=	document.getElementById(t_tab_id);
							that_tab.innerHTML = '<a href="javascript:SearchTab(' + i + ')" class="l">' + tab_text[i] + '</a>';			
					}								
			}
			
			
		
		
		}	