// This is a list of addresses
var furnhouse="info@furniturehouse.biz";
var sj="scottie@furniturehouse.biz";
var ms="mary@furniturehouse.biz";
var bg="bernice@furniturehouse.biz";
var pb="paffy@furniturehouse.biz";
var webmaster="dgoforth@furniturehouse.biz";
var sales="sales@furniturehouse.biz";

// These are some extra functions
function winOpen(url) {
	window.open(url,'pdfWin','width=750,height=550,resizable=yes');
}

function winOpen2(url) {
	window.open(url,'pdfWin','width=700,height=500,resizable=yes,scrollbars=1,toolbar=yes');
}
var current=new Date();
function currentDate() {
	
	var weekDay=current.getDay();
	var month=current.getMonth();
	var date=current.getDate();
	var fYear=current.getFullYear();
	var monthName=new Array("January","February","March","April","May","June","July")
	monthName.push("August","September","October","November","December");
	var dayName=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");
	document.write("Today's Date is : "+dayName[weekDay]+" "+monthName[month]+" "+date+","+" "+fYear+"<br />");
}
/*function currentTime() {
	var hour=current.getHours();
	var minutes=current.getMinutes();
	var seconds=setInterval('current.getSeconds()',1000);
	if (hour>13)hour=hour-12;
	if (seconds<10)seconds="0"+seconds;
document.write("The Current Time (EST) Is: "+hour+" : "+minutes+" : "+seconds);
	
}

function currentTimeInt() {
	setInterval('currentTime()',1000);
}*/
