//	Strike-Code (c) 1998 by Andreas Heidemann
//		mailto:a.heidemann@please.ruhr.de
//		http://www.ruhr.de/home/please/
//
//
//	LICENSE:
//	Anybody may use this source to support strike actions which 
//	are aiming to make life inside & outside of the internet
//	look a bit better.
//	This software must not be used for any commercial aims
//	without prior written notice from the author.
//	The author would appreciate a mail from everyone, who inserts
//	this code into other HTML pages. Thanks in advance.
//
//	WARRANTY:
//	There is NO warranty neither written nor implied for this
//	software to do anything or to be harmless or whatsoever.
//	USE IT AT YOUR OWN RISK !
//

function checkStrike (year, month, day)
{
// First set the date information. NOTE: the month below 
// is counted from zero, so November will be written as '9'
// The default values below are valid for Nov 1 1998
now   = new Date ();
start = new Date (year, month-1, day, 0,0,0);
stop  = new Date (year, month-1, day, 23,59,59);

// Second, set strike URL and message to whatever is apropriate
strikeURL     = "http://www.gamespy.de/internetstreik/Streik-Seite.html";
strikeMessage = "Sorry, there is a strike on this page today";

// Third, the action part of this script needs no 
// customization, just leave it as it is.
if 	(  now.getTime() >= start.getTime() 
	&& now.getTime() <= stop.getTime()
	)
{
	this.location = strikeURL;
	alert (strikeMessage);
}

}

checkStrike(1998, 11, 29);
checkStrike(1998, 12, 6);

