function showImage(){
//Preload images into array
var images = new Array(
"images/home_c_watermelon_straw_cool.jpg",
"images/home_c_basil_bramble_sling.jpg",
"images/home_c_calimocho.jpg",
"images/home_c_caribbean_quees.jpg",
"images/home_c_french75.jpg",
"images/home_c_ginger_french.jpg",
"images/home_c_nectarine_julep.jpg",
"images/home_c_russian_spring_punch.jpg",
"images/home_c_slingback_sherbert.jpg",
"images/home_c_sundowner.jpg");
var ImageNo = Math.floor(Math.random()*images.length);
//document.write('<a href="cocktails.html"><img name="im" src="',images[ImageNo],'" border="0" /></a>')
document.write('<a href="cocktails.html"><img name="im" src="',images[ImageNo],'" border="0" /></a>')
}

// Open Popup
function popupURL(URL,name,width,height, scrollWin){
	var winLeft = (screen.width - width) / 2;
	var winUp = (screen.height - height) / 2;
	win = window.open(URL,name, 'toolbar=no, resizable=yes, scrollbars='+scrollWin+', width='+width+', height='+height+',left='+winLeft+',top='+winUp);
}

