﻿// JScript File

    var Encuesta_IDOpcion = 0;

    function VentanaPopup(Pag, PagName, Width , Height)
	{
	    window.open(Pag,PagName,"height=" + Height + ", width=" + Width + ",status=yes , resizable=no, scrollbars=yes, toolbar=no,location=no,menubar=no");
	}
	
	function CheckedRadioEncuesta(param,IDOpcion)
			{
				{		
					var frm=document.forms[0];
					for(i=0;i<frm.length;i++)
					{
						if(frm.elements[i].type=="radio") 
						{
							if (param!=frm.elements[i].id)
							{
								frm.elements[i].checked=false;
							}
							else
							{
							    Encuesta_IDOpcion=IDOpcion;
							}
						}
					}					
				}
			}
			
			function VotarEncuesta(Url, TemaID, Width, Height){
			    if (Encuesta_IDOpcion!=0)
			    {
			        VentanaPopup(Url + "?TemaID=" + TemaID + "&OpcionID=" + Encuesta_IDOpcion,'Encuesta', Width, Height);
			    }
			    else
			    {
			        alert("Seleccione una Opcion");
			    }
			}
			
			function VerResultados(Url, TemaID, Width, Height){
			        VentanaPopup(Url + "?TemaID=" + TemaID ,'Encuesta', Width, Height);
			}
			
			
			function MenuMouseOver(ID)
			{
//				if(ie4) 	
//				{
					//var bgcolor = document.getElementById("trSeleccion" + sel).style.backgroundColor;
					document.getElementById(ID).bgColor="#99CCFF";
//					if (bgcolor == "#ffffff" || bgcolor == "white")
//						document.getElementById("trSeleccion" + sel).style.backgroundColor = "#fffad9";
//				}
			}

			function MenuMouseOut(ID)
			{
//				if(ie4)
//				{
				    document.getElementById(ID).bgColor="#FFFFFF";
//					var bgcolor = document.getElementById("trSeleccion" + sel).style.backgroundColor;
//					if (bgcolor == "#fffad9")
//						document.getElementById("trSeleccion" + sel).style.backgroundColor = "#ffffff";
//				}
			}
			