var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable';
win = window.open(mypage,myname,settings);
}
function click_count(id_,url_topass){
var id_set = id_;
var url_set = url_topass;

var ajaxRequest;  	
try{
 ajaxRequest = new XMLHttpRequest();
		//firefox,safari browser
		//ajax check
}catch (e){
		try{
			ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");
			//ie ajax check
		}catch(e){
			try{
				ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");
			} catch (e){
				alert("Your browser broke!");
				//return false if browser does not support
				//browser does not support
				return false;
		}
	}
}
ajaxRequest.onreadystatechange = function(){
if(ajaxRequest.readyState == 4){
	//alert('the page is on the other window');
	//window.location.href=url_set;	
	  //window.location.reload();
	  NewWindow(url_topass,'','900','800','yes');
	}
}
   var answer = confirm('A pop-up will open the page for you. Press Ok.');
   if (answer)
{	
var gdata = "http://www.viagem-para-brasil.com/wp-content/themes/viagem-para-brasil/emerald-waters/rating_control_id.php?id_read="+id_set+"&cap=count_read";
ajaxRequest.open("GET",gdata, true);
ajaxRequest.send(null); 
   }
}