
function go()
{
	var index=document.formGo.selectGo.selectedIndex;
	if ((index == 0)) { return false; }
	else 	{ location.href = document.formGo.selectGo.options[index].value; return false; }
};

function printIt() {	
	var iFrm = frames['IFrameTextId'];
	iFrm.focus();
	iFrm.print();
};

function printFriendly() {
	var width = 500;	
	var height = 740;
	var options = "width=" + width + ",height=" + height + ",toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=no";	
  var theUrl = document.getElementById('IFrameTextId').src;
	var new_window = window.open(theUrl, "print", options);
	window.self.name = "main";
	new_window.focus();
	if (returnwindow != null) {
	   return new_window;
	}
};

function goToVolCountries(oVSelect,oASelect)
{
	var cid = oVSelect.options[oVSelect.selectedIndex].value;
	var aid = oASelect.options[oASelect.selectedIndex].value;
	var optTxt = oASelect.options[oASelect.selectedIndex].text;
	var pt = 0;
	if (cid == 0 && aid == 0)
		pt = "";
	if(optTxt == "Cultural") pt = 1;
			
   var page = "project_list.php?pt=" + pt + "&cid=" + cid + "&aid=" + aid;  
	document.getElementById("IFrameTextId").src = page;	 	  
	return false;       	
};

function goCultCountries(oCSelect)
{		
	var ccid = oCSelect.options[oCSelect.selectedIndex].value;
	var page = "project_list.php?pt=1&ccid=" + ccid;       
	document.getElementById("IFrameTextId").src = page;	
	return false; 	
};





function getRandom(maxPic) 
  {
     randNum = 0
     while (randNum > maxPic || randNum < 1) {
          randNum = (Math.round((Math.random() * 300)))
     } 
     return randNum
  };

function getNextImage(settings) 
  { 
     document.write('<IMG SRC="http://www.icye.org/gfx/random/pic' + getRandom(58) + '.jpg"' + settings + '>');
  } ;


