function Votar( story_id )
{
	obj_ajax = Crear_XMLRequest();
	obj_ajax.open( 'GET', 'http://www.pa-digital.com.pa/diario/mas_votadas.php?story_id='+story_id+"&ramdon="+Math.random(), true );
	//
	obj_ajax.send(null);
}
//
function Crear_XMLRequest()
{
	var xmlhttp=false;
 	try {
 		xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
 	} catch (e) {
 		try {
 			xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
 		} catch (E) {
 			xmlhttp = false;
 		}
  	}

	if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
 		xmlhttp = new XMLHttpRequest();
	}
	return xmlhttp;
}
//
window.onLoad = function(){ Votar( story_id ) }