function placeVote(){
	win = window.open("", "_popup", "scrolling=no,width=570px,height=400px");
	document.getElementById("form_vota").submit();
}

var res = screen.width;
switch (res){
	case 800 :
		var ad1 = false;
		var ad2 = false;
	break;
	case 1024 :
		var ad1 = true;
		var ad2 = false;
	break;
	case 1280 :
		var ad1 = true;
		var ad2 = true;
	break;
	default :
		var ad1 = true;
		var ad2 = false;
	break;
}

$(document).ready(function() {
	var pepe = new Date();
	$("#pingaloca").html(pepe.getHours() + ":" + pepe.getMinutes() + ":" + pepe.getSeconds());
	if(ad1) {
		$.ajax({
			type: 'GET',
			url: '/inc/ad_rotator.php?type=1',
			data: "type=1",
			success: function(msg) {
				try {
					var contenido_ad = msg.split("@@@");
					$("#iAdvertisingRight").addClass("rightad"+contenido_ad[0]);
					if(contenido_ad[1]) {
						$('#iAdvertisingRight').html(contenido_ad[1]);
						doThePNGcrapAgain();
					}
				} catch (e) {

				}
			}
		});
	}
});

