function displaysplash()
{
// checks if ie
    var isMSIE = /*@cc_on!@*/false;

    if(isMSIE)
	{
        for(i=0;i<document.forms[0].elements.length;i++)
        {
            el = document.forms[0].elements[i];
            if(el.type=='select-one') {
                el.style.display = 'none';
            }
        }
    }

    var width = $(document).width();
    var height = $(document).height();
    $('#blanket').toggle();
    $('#blanket').width(width);
    $('#blanket').height(height);
    $('#popUpDiv').toggle();
    $('#popUpDiv').center();
    $('#popUpDiv').height(480);
    return true;
}

$(function() {
	$('form').submit(function() {
			$('#submit-button').attr('disabled','disabled');
			displaysplash();
		 });
});
