var phone_number = '301-897-2540';
var fax_number = '301-897-2567';
var tollfree = '800-SPHERIX';
var email = 'info@spherix.com';
var email_naturlose = 'info@spherix.com';
var company_name = 'Spherix Inc.';
var company_address = '6430 Rockledge Drive #503, Bethesda, MD 20817, USA';
var company_website = 'www.spherix.com';

var contact = 'Spherix';
var contact_email = 'info@spherix.com';
var contact_phone = '301-897-2540';

var contact_2 = 'Kathy Brailer';
var contact_2_email = 'KBrailer@spherix.com';
var contact_2_phone = '301-897-2540';

var curr_date = new Date();
var curr_year = curr_date.getYear();

//---------------------------------------------------------------------//
// fxPopupFreeForm() - shows popup window
//---------------------------------------------------------------------//
function fxPopupFreeForm(page, width, height) {
	var top = (screen.height - height)/2;
	var left = (screen.width - width)/2;
	styleWin = window.open(page,null,'toolbar=0,location=no,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=' + width + ',height=' + height + ',top=' + top + ',left=' + left);
	if (navigator.appName == "Netscape") {
		styleWin.focus();
	}
}

//---------------------------------------------------------------------//
// fxFooter() - displays text navigation links and copyright info
//---------------------------------------------------------------------//
function fxFooter(){
	document.write("\n" + 	
		"<center>" + 
		"<br><br>" + 
		"<font class='footer'>\n" + 
		"\n" + 
		"<a id='small' href='naturlose-what.htm'>What is Naturlose?</a> | \n" + 
		"<a id='small' href='naturlose-benefits.htm'>Benefits of Naturlose</a> | \n" + 
		"<a id='small' href='naturlose-diabetes.htm'>Naturlose & Diabetes</a> \n" + 
		"<br>\n" + 
		"<a id='small' href='naturlose-healthcare.htm'>For Healthcare Professionals</a> | \n" + 
		"<a id='small' href='naturlose-faq.htm'>FAQs</a> | \n" + 
		"<a id='small' href='naturlose-contact.htm'>Contact Us</a> \n" + 
		"<br><br>\n" + 
		"Copyright © " + company_name + " " + curr_year + "\n" + 
		"<br>\n" + 
		"All Rights Reserved.\n" + 
		"<br>\n" + 
		"<a id='small' href='naturlose-privacy.htm'>Privacy Statement</a>\n" + 
		"<br><br>\n" + 
		"<font id='footer' class='phone'>" + phone_number + "</font>\n" + 
		"<br><br>\n" + 
		"<a id='footer' href='mailto:'" + email + "'>" + email + "</a>\n" + 
		"<br><br>\n" + 
		"</font>\n" + 
		"<center>" + 
		"<br>")
}
function fxFooter1(){
	document.write("\n" + 	
		"<center>" + 
		"<br><br>" + 
		"<font class='footer'>\n" + 
		"\n" + 
		"<a id='small' href='index.htm'>Home</a> | \n" + 
		"<a id='small' href='naturlose-what.htm'>What is Naturlose?</a> | \n" + 
		"<a id='small' href='naturlose-benefits.htm'>Benefits of Natulose</a> | \n" + 
		"<a id='small' href='naturlose-diabetes.htm'>Naturlose & Diabetes</a> \n" + 
		"<br>\n" + 
		"<a id='small' href='naturlose-healthcare.htm'>For Healthcare Professionals</a> | \n" + 
		"<a id='small' href='naturlose-faq.htm'>FAQs</a> | \n" + 
		"<a id='small' href='naturlose-contact.htm'>Contact Us</a> \n" + 
		"<br><br>\n" + 
		"Copyright © " + company_name + " " + curr_year + "\n" + 
		"<br>\n" + 
		"All Rights Reserved.\n" + 
		"<br>\n" + 
		"<a id='small' href='naturlose-privacy.htm'>Privacy Statement</a>\n" + 
		"<br><br>\n" + 
		"<font id='footer' class='phone'>" + phone_number + "</font>\n" + 
		"<br><br>\n" + 
		"<a id='footer' href='mailto:'" + email + "'>" + email + "</a>\n" + 
		"<br><br>\n" + 
		"</font>\n" + 
		"<br>\n" + 
		"<a href='http://" + company_website + "'><img src='images/spherix_sub.gif' alt='Visit Spherix Website' border='0'></a>\n" + 
		"<center>" + 
		"<br><br>")
}

