// JavaScript Document

    var screenwidth = screen.width;
    // Select the css file to use based on the screen resolution
	
	if (screenwidth < 1024) {
      document.write('<link href="css/home800.css" rel="stylesheet" type="text/css"/>');
    }
    else {
      document.write('<link href="css/home1024.css" rel="stylesheet" type="text/css"/>');
    }
	
	// This function is used to disable the Paypal buttons based on the date of the concert
	function disablebutton () {
		var shutdowndate = new Date("December 2, 2011 15:00:00")
		var currentTime = new Date()
		// If todays date is greater than or equal to the shutoff date and time disable the Paypal buttons
		if (currentTime >= shutdowndate)
		{
			document.getElementById('submit').disabled="disabled";
		}
	}

