function testit() {
	alert('ok');
}
/*	-------------------------------------------------------------	*/
function showhide(id) {
	items	= document.getElementById(id);
// alert(items.innerHTML);
	if (items.style.display == 'none'){
		items.style.display		= 'block';
	} else {
		items.style.display		= "none";
	}
}

/*	-------------------------------------------------------------	*/
function checkPortal() {
	cookie	= document.cookie;
	isportal		= getCookie('portal');
	viewedportal	= getCookie('viewedportal');
	//alert(isportal);
	if (isportal == 'yes' && viewedportal !='1') {
		document.cookie = "viewedportal=1";
		document.location = 'aboutsymbol.html'
	} else {
		document.location = 'home.html'
	}


}

/*	-------------------------------------------------------------	*/
function getCookie(name) {
	cookies		= document.cookie;
	var start	= cookies.indexOf(name + "=");

	start	= cookies.indexOf("=",start)+1;
	var end	= cookies.indexOf(";",start);
	if (end==-1) {
		end	= cookies.length;
	}
	var value	= unescape(cookies.substring(start,end));
	//alert(value);
	return value;
	//if (value==null) {
	//	alert("Cookie not found");
	//}
	//else {
	//	alert("Cookie value is: "+value);
	//}

}
/*	-------------------------------------------------------------	*/
function displayPopup(pagesrc,width,height) {
//	var myBars		= 'directories=yes,location=yes,menubar=yes,status=yes,titlebar=yes,toolbar=yes';
	var myBars		= 'directories=no,location=no,menubar=no,status=yes,titlebar=yes,toolbar=no';
	var myOptions	='scrollbars=yes,width='+width+',height='+height+',resizable=yes';
	var myFeatures	= myBars + ',' + myOptions;
//	var refWindow	= window.open('http://www.dragondoor.com/blank.html', 'ref_Win', myFeatures);
	var refWindow	= window.open('', 'ref_Win', myFeatures);
	//var content		= '<html><body><img src="'+imgsrc+'"><br><center> ';
	//content			+= '<a href="javascript:window.close()">Close this window </a></center></body></html>';
	refWindow.document.open();
	refWindow.document.write(pagesrc);	
	refWindow.document.close();
}

/*	-------------------------------------------------------------	*/
function displayNonProfitMessage() {
	pagesrc	 = '<html><body><div style="border:1px solid lightgrey;margin:0px;padding:5px;font-size:14px">';
	pagesrc	+= 'Dear Friend of the Tao,<BR>\n';
	pagesrc	+= '<p>Healing Tao USA products and Healing Tao University summer retreats are part of Dao Alchemy Research Institute, Inc., a 501c3 IRS approved non-profit organization. We thank you for your interest and support. \n';
	pagesrc	+= '<p>According to conservative accounting guidelines,  most tax filers may safely deduct as a donation to our non-profit about a 40% of the retail cost of any product/retreat you purchase. No special receipt is necessary.  To choose the tax deductible percentage you are comfortable with, please consult with your own accountant \n';
	pagesrc	+= '<p>Cash donations are 100% deductible, and are gratefully accepted as an expression of your innate kindness and goodness of heart. If your donation is over $5,000., the IRS will require a letter of confirmation from us. If you wish to make a donation by credit card, call 888-999-0555 Or mail check payable to: Dao Alchemy Research Institute, Box 601, Asheville, NC 28802 USA. \n';
	pagesrc	+= '<p>Thank you for your support in accelerating global spiritual development! \n';
	pagesrc	+= '<p>May abundant love, chi, and blessings flow to all, \n';
	pagesrc	+= '<p>Michael Winn,<BR>President<BR>Dao Alchemy Research Institute, Inc. \n';
	pagesrc += '<p align=center><a href=\'javascript:window.close()\'>Close Window</a>';
	pagesrc	+= '</div></body></html>';

	height	= 500;
	width	= 600;
	displayPopup(pagesrc,width,height);
}

/*	-------------------------------------------------------------	*/

function showGuarantee() {

	pagesrc	 = '<html><body><div style="border:1px solid lightgrey;margin:0px;padding:5px;font-size:14px">';

	pagesrc	+= '<h3>100% RISK-FREE 1-Year Guarantee</h3>';
	pagesrc	+= 'Healing Tao has satisfied hundreds of thousands of customers since 1983. We are one of the oldest and perhaps the largest organization promoting Taoist energy arts in the West. We stand behind the quality of our educational products. Requests to return an item are rare, but should be made within one year of sale.';
	pagesrc	+= '<p>We are happy to process your return immediately.<BR>';
	pagesrc	+= 'If you care to help us improve our products, we¹d love your feedback!';
	pagesrc	+= '<p>We encourage everyone to thoroughly practice the time-tested methods we offer, as energetic results can be subtle. Repetition is the secret to success in chi cultivation. Don\'t hesitate to email our office if you have questions.';
	pagesrc	+= '<p>For Returns: to help us find your order, please enclose the invoice number or date of purchase, and name/email address given when order was placed.';
	pagesrc	+= '<p>Please contact us for the correct shipping address BEFORE returning products (in good condition, please). As we move our entire office and bookstore in the summer to Dao Mountain Summer Retreats, our shipping address is seasonal and changes.';
	pagesrc	+= '<p>For our correct shipping address or other questions:';
	pagesrc	+= '<p>Inside USA: please call us at 888-999-0555.';
	pagesrc	+= '<p>Outside USA email: info@healiingdao.com';
	pagesrc	+= '<BR>Or call 828-670-7322 (tel) or 828-667-8058 (fax)';
	pagesrc += '<p align=center><a href=\'javascript:window.close()\'>Close Window</a>';
	pagesrc	+= '</div></body></html>';



	height	= 500;
	width	= 600;
	displayPopup(pagesrc,width,height);


}

/*	-------------------------------------------------------------	*/
function submitInnerSmileSubscribe(){
	document.forms[2].value=1;

	email	= document.forms[2].emailaddr.value;

	if (email.length>1) {
		document.forms[2].submit();
	} else {
		alert('Invalid email address');
	}
}

/*	-------------------------------------------------------------	*/
/*	-------------------------------------------------------------	*/
/*	-------------------------------------------------------------	*/
/*	-------------------------------------------------------------	*/

