// JavaScript Document
function hide()
{
for(i=0; j=arguments[i];i++){
  document.getElementById(j).style.display="none";
	}
}
function show()
{
for(i=0; j=arguments[i];i++){
  document.getElementById(j).style.display="block";
	}
}
function openImg(SRC,title){
if(title==undefined)title="Pittsburgh chinatown business network welcome you! The only site links you to Chinese businesses in Chinese Community in the Greater Pittsburgh area. It is your one stop shopping in Chinese Community.";
OpenWindow=window.open("", "newwin", "fullscreen=yes,toolbar=no, menubar=no, scrollbars=yes, resizable=yes, location=no, status=no");
//写成一行
OpenWindow.document.write("<HTML>")
OpenWindow.document.write("<TITLE>"+title+"</TITLE>")
OpenWindow.document.write("<BODY align='center'><div style='width:100%;text-align:center; margin:0 auto'>")
OpenWindow.document.write("<img src='"+SRC+"'>")
OpenWindow.document.write("</div></BODY>")
OpenWindow.document.write("</HTML>")
OpenWindow.document.close()
}