function go_url(gourl,targetWin,indexhref) {
	if(gourl.indexOf("?")>0)
		gourl = gourl+"&tempid="+Math.random()
	else
		gourl = gourl+"?tempid="+Math.random()

	gourl = gourl+indexhref
	if(targetWin==''||targetWin=='_self'||targetWin=='_blank') {
		if(targetWin=='_blank') {
			window.open(gourl)
		} else {
			window.location.href=gourl
		}			
	} else {
		parent.frames[targetWin].location.href=gourl
	}
}
