/*GENERAL METHODS*/
/*Check for Empty String*/

function confirmFlash() {

	var answer = confirm("You do not have Flash installed. Do you want to install Flash now?");
	    
	    if (answer)
	    {
	        var version = navigator.userAgent;
            var findIE6 = version.indexOf('MSIE 6');
            var findIE7 = version.indexOf('MSIE 7');
            
            if(findIE6 != -1 || findIE7 != -1)
	        {
		        window.location = "http://www.adobe.com/go/full_flashplayer_win_ie";

		        setTimeout('reloadPage()', 10000);
	        }
	        else
	        {
		        window.location = "http://fpdownload.macromedia.com/get/flashplayer/current/install_flash_player.exe";
	        }
	    }
	
	    else
        {
	        return answer;
        }	
}

function showDiv(id)
{
    
    document.getElementById(id).style.display= 'block';
}

function reloadPage()
{
    window.location.reload();
}