
other = 'top=20 left=20 width=500 height=395'

function winClose()
	{
	// newWin.close();
	}


function winOpen(img, spec)
	{
	newWin = window.open(img, '_blank', spec);
	newWin.document.write('<title>OUTBACK BUSH &copy;</title>');

	newWin.document.write('<link rel="stylesheet" type="text/css" href="../style.css">');
	newWin.document.write('<body onblur="window.close();">');
	newWin.document.write('<img src="' + img + '"><br>');
	newWin.document.write('<div class="winClose">');
	newWin.document.write('<a class="close" style="padding-left: 5px" href="javascript:window.close()">close</a>');
	newWin.document.write('</div>');
	newWin.document.write('</body>');
	}
	
function openWhereIs()
	{
	window.open('whereweare.aspx','_new','top=80,left=80,width=500,height=200,scrollbars=yes');
	}