/* 
	This is a simple page of all the scripts used on the PBS Website, even if the scripts are not used, 
	every page has a link to this so that it can easily be used in the future...
	Peter Austin 6/5/08
*/

// Function for displaying time on each page...
function displaytime()
{
	var months = new Array(13);
   	months[0]  = "January";
  	months[1]  = "February";
  	months[2]  = "March";
  	months[3]  = "April";
  	months[4]  = "May";
  	months[5]  = "June";
  	months[6]  = "July";
  	months[7]  = "August";
  	months[8]  = "September";
  	months[9]  = "October";
  	months[10] = "November";
  	months[11] = "December";
  	
  	var myDays=["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday","Sunday"];

	var currentTime = new Date();
	var day = myDays[currentTime.getDay()];
	var date = currentTime.getDate();
	var month = months[currentTime.getMonth()];
	var year = currentTime.getFullYear();
	document.write(day + " " + month + ", " + date + ", " + year);
}

// Allows the rounded corners on each page... !Load last for correct corners on ads!
window.onload=function()
{
	Nifty("div.content,div.adboxround","big");
	Nifty("div.sidebox","fixed-width,big");
	Nifty("div.tabcontent","tr bottom big");
}

function checkez()
{
	var msg = ""
	msg = msg + "---------------------- W A R N I N G ----------------------    \n";
	msg = msg + "You must check this box to acknowledge, you have               \n";
	msg = msg + "read and agree to the documents set forth by                   \n";
	msg = msg + "Promotional Marketing Assistants Company, LLC.                 \n\n";
	msg = msg + "Terms & Conditions                                             \n";
	msg = msg + "Privacy Policy                                                 \n";

	var f = document.loginForm;
	if (!f.cbAcknowledge.checked)
	{
		alert(msg);
		return false;
	}
	else {return true;}
}