function openCampanhaGolfWindow()
{
	var w = this.window;
	var url = 'campanhagolf/index.html';
	var windowName = '_blank';
	var height = 600;
	var width = 800;
	var location = 'no';
	var menubar = 'no';
	var resizable = 'no';
	var status = 'no';
	var toolbar = 'no';
	var left = '50';
	var top = '50';
	
	var openArguments = 'height=600,width=800,location='+location+',menubar='+menubar+',status='+status+',toolbar='+toolbar+',resizable='+resizable+',left='+left+',top='+top;
	
	w = window.open(url, windowName, openArguments);
	return;
}
