function do_click_ajax(strURL) {
    var xmlHttpReq = false;
    var self = this;
    // Mozilla/Safari
    if (window.XMLHttpRequest) {
        self.xmlHttpReq = new XMLHttpRequest();
    }
    // IE
    else if (window.ActiveXObject) {
        self.xmlHttpReq = new ActiveXObject("Microsoft.XMLHTTP");
    }
    self.xmlHttpReq.open('GET', strURL, true);
    self.xmlHttpReq.onreadystatechange = function() {

    }
    self.xmlHttpReq.send(strURL);
}


function clckx(post_id){
	strURL='http://www.ignoregon.com/clicks/'+post_id;
	//alert(strURL);
	
	return do_click_ajax(strURL);


}

function do_search(){

	var form_q=document.search_form.q.value;
		if(form_q.length<=2){
			alert("C'mon, you've got to enter something more reasonable in the search box");
		}else{
			var loc='http://www.feedmeportland.com/search/?q='+form_q;
			window.location=loc;
		}


}

function submit_form(){
	var form_q=document.search_form.q.value;
		if(form_q.length<=2){
			alert("C'mon, you've got to enter something more reasonable in the search box");
			return false;
		}else{
			var loc='http://feedmeportland.com/search/?q='+escape(form_q);
			window.location=loc;
			return false;
		}
}