// Edit Below
var FullScreen = "Flash site with no browser icon/bar";
var normal = "Flash site in the same Windows";
var popUp = "Flash site For Smaller Screen size (Scroll Bar enable)";
var html = "HTML site (Fast but limited)";

// Dont Edit
function hint(button)
{
	var hint = document.getElementById("hint");
	
	if (button == 1)
	{
		hint.innerHTML = FullScreen;
		hint.className = "hint-hover";		
	}
	else if (button == 2)
	{
		hint.innerHTML = normal;
		hint.className = "hint-hover";		
	}
	else if (button == 3)
	{
		hint.innerHTML = popUp;
		hint.className = "hint-hover";		
	}
	else if (button == 4)
	{
		hint.innerHTML = html;
		hint.className = "hint-hover";		
	}
} 
function hintClear()
{
	var hint = document.getElementById("hint");
	hint.innerHTML = "";
	hint.className = "hint";		
}
function funcStartFull() 
{
    w=window.open("Flash/main.aspx","full","channelmode=yes,fullscreen=yes,menubar=no,scrollbars=no,status=no,titlebar=no,toolbar=no");
    w.focus();
}