<!-- Hide script 

function smlctrWindow( thewin,myname,w,h,scroll,resize)
{
	var lpos = (screen.width) ? (screen.width)/2 : 0;
	var tpos = (screen.height) ? (screen.height)/2 : 0;
	
	var myOptions = 'width='+w+',height='+h+',top='+tpos+',left='+lpos+',';
	myOptions	 += 'scrollbars='+scroll+',resizable='+resize;
	
	var mywindow = window.open( thewin, 'myname', myOptions );
	mywindow.focus();
}	

function newCtrdWindow( thewindow,myname,w,h,scroll,resize )
{	
	var myw = (window.screen.width)/2 - (w/2); 	// 1/2 scr wd - 1/2 new w + 4 px border
	var myh = (window.screen.height)/2 - (h-50/2); 	// 1/2 scr ht - 1/2 new h + 50 px tools
	
	var myBars = 'status=no,toolbar=no,directories=no,location=no,menubar=no,titlebar=no';
	myBars    += ',scrollbars='+scroll+',resizable='+resize;
	var myOpts = 'width='+w+',height='+h+',top='+myh+',left='+myw;
	var myFeatures = myOpts + myBars;

	var ctrdwindow = window.open( thewindow, 'myname', myFeatures );
	ctrdwindow.focus();
}

function fullCtrdWindow( thewindow,myname,w,h,scroll,resize )
{	
	var myw = (window.screen.width)/2 - (w/2); 	// 1/2 scr wd - 1/2 new w + 4 px border
	var myh = (window.screen.height)/2 - (h-50/2); 	// 1/2 scr ht - 1/2 new h + 50 px tools
	
	var myBars = 'status=no,toolbar=yes,directories=yes,location=yes,menubar=yes,titlebar=yes';
	myBars    += ',scrollbars='+scroll+',resizable='+resize;
	var myOpts = 'width='+w+',height='+h+',top='+myh+',left='+myw;
	var myFeatures = myOpts + myBars;

	var ctrdwindow = window.open( thewindow, 'myname', myFeatures );
	ctrdwindow.focus();
}

function hide_email()
{
	user = "joann";
	site = "qiheals.com";

	document.write('<a href=\"mailto:' + user + '@' + site + '\">');
	document.write(user + '@' + site + '</a>');
}

// End hiding script -->

