<!-- 
if (top.location!= location) top.location.href = location.href; 
//--> 
function HideStatus(){
	window.status = document.readyState!="complete" ?
		"Press F5 Key if not Loading..." : window.defaultStatus;
}
document.onreadystatechange = HideStatus;
var affInterfaceOptions = '&pr_code=S8DBOl08aLNqM2AriVuEJ4yZ80vmil&cols=3&rows=5&amp;sp=10&amp;iw=560&amp;ih=1060&amp;noscroll=1&amp;sadult=0';

function IncludeAffInterface(options,file){
	if(!file) file = 'pr_interface';
	options = affInterfaceOptions + (options ? '&'+options : '');
	document.write('<SCRIPT type="text/javascript" language="JavaScript" src="http://www.templatehelp.com/codes/'+file+'.php?'+options+'"><'+'/SCRIPT>');
}

function Popup(url){
	window.open(
		url,
		'window',
		'width=600, height=600, resizable=yes, scrollbars=yes, location=no,  toolbar=no, menubar=no, status=no'
	);
}
document.write('<SCRIPT type="text/javascript" language="JavaScript" src="../763.js"><'+'/SCRIPT>');

var this_weekday_name_array = new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")	//predefine weekday names
var this_month_name_array = new Array("January","February","March","April","May","June","July","August","September","October","November","December")	//predefine month names

var this_date_timestamp=new Date()	//get current day-time stamp

var this_weekday = this_date_timestamp.getDay()	//extract weekday
var this_date = this_date_timestamp.getDate()	//extract day of month
var this_month = this_date_timestamp.getMonth()	//extract month
var this_year = this_date_timestamp.getYear()	//extract year

if (this_year < 1000)
	this_year+= 1900;	//fix Y2K problem
if (this_year==101)
	this_year=2001;		//fix Netscape browsers - it displays the year as being the year 101!

var this_date_string = this_weekday_name_array[this_weekday] + ", " + this_month_name_array[this_month] + " " + this_date + ", " + this_year;