// QUICKTIME CODE (XHTML VALID)function vid_quicktime(source,width,height) {	var qtCode;		qtCode = '<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="' + width + '" height="' + height + '" codebase="http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0">';	qtCode += '<param name="src" value="' + source + '"></param>';	qtCode += '<param name="controller" value="true"></param>';	qtCode += '<param name="type" value="video/quicktime"></param>';	qtCode += '<param name="autoplay" value="false"></param>';	qtCode += '<param name="target" value="myself"></param>';	qtCode += '<param name="pluginspage" value="http://www.apple.com/quicktime/download/indext.html">';	qtCode += '<embed src="' + source + '" width="' + width + '" height="' + height + '" controller="true" autostart="false" target="myself" type="video/quicktime" bgcolor="#000000" border="0" pluginspage="http://www.apple.com/quicktime/download/indext.html"></embed>';	qtCode += '</object>';	document.write(qtCode);}// RANDOM VARIABLESfunction randomizer(total) {	today = new Date();	jran_one = today.getTime();	var number = total;	var random_one = "";	ia = 9301;	ic = 49297;	imq = 233280;	jran_one = (jran_one*ia+ic) % imq;	random_one = Math.ceil( (jran_one/(imq*1.0)) * number);		return random_one;}	// MAILTO FUNCTIONfunction mailto(username,hostname,linktext) {	document.write("<a href=" + "mail" + "to:" + username + "@" + hostname + ">" + linktext + "</a>");}// WINDOW POP-OFF FUNCTIONfunction winpop(url,width,height) {	wh = "width="+width+",height="+height;	window.open(url,'newwin',wh);}// SET FEEL BASED ON HOURfunction feel() {	var now = new Date();	var hours = now.getHours();		// feel choices are sunrise, day, sunset, night	var feel = "night";		// night is 9 pm to 6 am, including midnight	if (hours == 0 || hours >= 21 || hours < 6) {		feel = "night";	// sunrise is before 6 am to 11 am	} else if (hours >= 6 && hours < 11) {		feel = "sunrise";	// day is from 11 am to 5 pm	} else if (hours >= 11 && hours <= 16) {		feel = "day";	// sunset is from 5 pm to 8 pm)	} else if (hours > 16 && hours < 21) {		feel = "sunset";	}		return feel;}