function handCursor()
{
	document.body.style.cursor='pointer';
}

function normalCursor()
{
	document.body.style.cursor='default';
}

function register()
{
	var brand_name = getBrandName();
	
	var addr = "https://www." + brand_name + "/shindig/registration/shindig_registration.jsp";
	
	document.location.href = addr;
}