// JavaScript Document
// For the Header Search form
function goto_url(form) 
{
    if (form.search_text.value == "") 
    {
        alert("Please enter some text and then press Search");
        return false;
    }
    var url = 'http://www.uq.edu.au/search/index.asp?q1=' + escape(form.search_text.value);
    //var url = form.search_select[form.search_select.selectedIndex].value +
    //escape(form.search_text.value);
    // Uncomment this lines if you want the current window to change
    document.location = url;
    // Uncomment this line if you want the search in a new window
    //search_window = window.open(url);
    return false;
}

// For the Rotating Images
var arrayImages = new Array(9);

arrayImages[0] = '/research/qcidd/images/rotated/computers.jpg'; 
arrayImages[1] = '/research/qcidd/images/rotated/couple.jpg'; 
arrayImages[2] = '/research/qcidd/images/rotated/cricket.jpg';
arrayImages[3] = '/research/qcidd/images/rotated/girl_sticking.jpg';
arrayImages[4] = '/research/qcidd/images/rotated/girls.jpg';
arrayImages[5] = '/research/qcidd/images/rotated/making_lunch.jpg';
arrayImages[6] = '/research/qcidd/images/rotated/picnic.jpg'; 
arrayImages[7] = '/research/qcidd/images/rotated/reading.jpg'; 
arrayImages[8] = '/research/qcidd/images/rotated/workers.jpg'; 

function select_image()
	{
	var src = arrayImages[Math.floor(Math.random() * arrayImages.length)];
	
	document.write('<img name="somImages" width="180" height="137" alt="Medical School" border="0" class="hide" src="' + src + '">');
	}

itrequest = function(){
    document.location.href='mailto:itrequest@som.uq.edu.au'; 
    }
	
function date_lastmodified()
{	
  var lmd = new Date(document.lastModified);
  var the_day = lmd.getDate();
  var the_month = lmd.getMonth();
  var the_year = lmd.getFullYear();
  var the_date = the_day + '/' + the_month + '/' + the_year;
  document.write(the_date);
}	