function getRow1Content(){
	// document.write('<a href=""><img src=""></a>')
}

function getRow2Col1Content(){
	// document.write('<a href=""><img src=""></a>')
}

function getRow2Col3Content(){
	// document.write('<a href=""><img src=""></a>')
}

function selectMixedSearchImage(){
	var imgCount = 4
	
	var randomNum = 0
	while( randomNum == 0 ){
		randomNum = Math.floor ((Math.random() * imgCount));
	}
	// alert(randomNum)
	var imgArray = []
	
	imgArray[1] = 'www.yahoo.com'
	imgArray[2] = 'www.msn.com'
	imgArray[3] = 'www.google.com'
	imgArray[4] = 'www.altavista.com';
	document.write('<map name="row2col1map" id="row2col1map"><area coords="165,175,278,200" href="' + imgArray[randomNum] + '"></map>');
	document.write('<img useMap="#row2col1map" src="wImages/_mixedSearch/' + randomNum + '.gif" border="0">');
	
	return;
}
