function GoTo(url)
{
	window.location = url;
}

function ShowDialog(url, cache, center, scroll, left, top, width, height, advancedFeatures)
{
	if (cache == 0)
	{
		var d = new Date();
		if (url.indexOf('?') == -1)
			url = url + "?pageversion=" + d.getTime();
		else
			url = url + "&pageversion=" + d.getTime();
	}
	if (center == 1)
	{
		left = (screen.availWidth - width)/2;
		top = (screen.availHeight - height)/2;
	}
	var features = "toolbar=0,scrollbars=" + scroll + ",left=" + left + ",top=" + top + ",height=" + height + ",width=" + width + "";
	if (advancedFeatures != "")
		features = features + "," + advancedFeatures;
	window.open(url, "", features);
}

