var base= "images/"
var nrm = new Array();
var omo = new Array();
var stuff = new Array('home_button',
					  'top_navigatie_01',
					  'top_navigatie_02',
					  'top_navigatie_03',
					  'top_navigatie_04',
					  'top_navigatie_05',
					  'top_navigatie_06',
					  'top_navigatie_07',
					  'top_subnavigatie_08',
					  'top_subnavigatie_09');

// Pre-load part.

if (document.images)
{
	for (i=0;i<stuff.length;i++)
	{
		nrm[i] = new Image;
		nrm[i].src = base + stuff[i] + ".gif"
		omo[i] = new Image;
		omo[i].src = base + stuff[i] + "_mouseover.gif";
	}
}


// The functions: first mouseover, then mouseout

function over(no)
{
	if (document.images)
	{
		document.images[no].src = omo[no].src
	}
}

function out(no)
{
	if (document.images)
	{
		document.images[no].src = nrm[no].src
	}
}

function voting(stem)
{
  // 'Position' is one of the following:
  // 'n', 'ne', 'e', 'se', 's', 'sw', 'w', 'nw', 'cen', 'cenh' or 'cenv'
  var stem;
  var theUrl;
  var id;
  if(stem=='show')
   theUrl = 'stemmen.php';
  else
  {
   window.document.stelling_van_de_week.eens.disabled = true;
   window.document.stelling_van_de_week.oneens.disabled = true;
   window.document.stelling_van_de_week.geen.disabled = true;   
   id = window.document.stelling_van_de_week.stellingid.value;
   theUrl = 'stemmen.php?sid=' + id + '&stem=' + stem;
  }
    pop1 = new xPopup(
             'timeout',       // timer type
             10000,           // timeout in ms
             'w',             // from, on show
             'cen',           // to, on show
             'n',             // to, on hide
             'popupStyle',    // style class name
             'popup1',        // id
             theUrl);  // popup url



}
function mypopup(stem)
 {
  var stem;
  var theUrl;
  var id;
  if(stem=='show')
   theUrl = 'stemmen.php';
  else
  {
   window.document.stelling_van_de_week.eens.disabled = true;
   window.document.stelling_van_de_week.oneens.disabled = true;
   window.document.stelling_van_de_week.geen.disabled = true;   
   id = window.document.stelling_van_de_week.stellingid.value;
   theUrl = 'stemmen.php?sid=' + id + '&stem=' + stem;
  }

  mywindow = window.open(theUrl, "mywindow","location=0,status=0,scrollbars=0, width=280,height=244");
  mywindow.moveTo(500,250);
  
/*  window.document.stelling_van_de_week.eens.checked = false;
  window.document.stelling_van_de_week.oneens.checked = false;
  window.document.stelling_van_de_week.geen.checked = false;*/
}

function openwindow(theURL, width) 
{ 
  winName ="Document";
  features = 'menubar=no,scrollbars=yes,resizable=yes, toolbar=no, width='+width;
  wind1 = window.open(theURL,winName,features);
}

