function windowPop(name,url)
{ 
	if (document.all) {
  	x = window.screenLeft + 210;
  	y = window.screenTop + -90;
	}
	else {
 	 x = window.screenX + 190;
 	 y = window.screenY + 0;
	}
	name=window.open(url,name,'scrollbars=no,width=350,height=300,top='+y+',left='+x);
}
function windowPop2(name,url)
{ 
	if (document.all) {
  	x = window.screenLeft + 210;
  	y = window.screenTop + -90;
	}
	else {
 	 x = window.screenX + 190;
 	 y = window.screenY + 0;
	}
	name=window.open(url,name,'scrollbars=no,width=350,height=350,top='+y+',left='+x);
}
function expandclients(thistag) {
	for(i=1;i<=21;i++){
	document.getElementById("text"+i).style.display='none';
	}
	document.getElementById("text"+thistag).style.display='';
}
function closeclients(){
	for(i=1;i<=21;i++){
	document.getElementById("text"+i).style.display='none';
	}
}

function expandrecipes(thistag) {
	for(i=1;i<=6;i++){
	document.getElementById("text"+i).style.display='none';
	}
	document.getElementById("text"+thistag).style.display='';
}
function closerecipes(){
	for(i=1;i<=6;i++){
	document.getElementById("text"+i).style.display='none';
	}
}

