var theWin;
function go(path)
{
	theWin = window.open(path + '?rand=' + Math.round(Math.random()*1000000), 'newWin', 'width=640,height=480,scrollbars=yes,toolbar=yes,menubar=yes,location=yes,resizable=yes');	
	theWin.focus();
}