/***************************************************************************
ポップアップウインド作成スプリクト　Ver 1.02

                             作成者 夕飯

****************************************************************************/





/*function 関数名(){
	nwin = window.open("リンク先の名前(ここではなにも書かない)", "名前","サイズ");
	nwin.document.open();
	nwin.document.write("タグ入力");
	nwin.document.write("<TITLE>タイトル</TITLE>");
	nwin.document.writeln("<BODY>");
	nwin.document.write("ここに文章");
	nwin.document.write("<IMG SRC=\"イメージリンク\">"); 
       nwin.document.write("ここに文章");	           
	nwin.document.write("</BODY></HTML>");
	nwin.document.close();

	return false;
      
}
*/

function test(){
	nwin = window.open("", "Newwindow","width=630,height=430","TOYO ITO &amp; ASSOCIATES, ARCHITECTS ","status=1");
	nwin.document.open();
	nwin.document.write("<HTML>");
	nwin.document.write("<TITLE>TOYO ITO &amp; ASSOCIATES, ARCHITECTS</TITLE>");
	nwin.document.writeln("<BODY>");
        nwin.document.write("<IMG SRC=\"fujiya-j.gif\" width=\"620\" height=\"400\">"); 
	nwin.document.write("<BR>");
	nwin.document.write("");
	nwin.document.write("</BODY></HTML>");
	nwin.document.close();
  
	return false; 
}

function newindow01(){
	nwin = window.open("", "Newwindow","width=630,height=430","TOYO ITO &amp; ASSOCIATES, ARCHITECTS 　ANNEX","status=1");
	nwin.document.open();
	nwin.document.write("<HTML>");
	nwin.document.write("<TITLE>TOYO ITO &amp; ASSOCIATES, ARCHITECTSANNEX</TITLE>");
	nwin.document.writeln("<BODY>");
        nwin.document.write("<IMG SRC=\"annex-j.gif\" width=\"620\" height=\"400\">");
    
	nwin.document.write("<BR>");
	nwin.document.write("");
	nwin.document.write("</BODY></HTML>");
	nwin.document.close();

	return false;
}

function newindow02(){
	nwin = window.open("", "Newwindow","width=630,height=430","TOYO ITO &amp; ASSOCIATES, ARCHITECTS / BARCELONA OFFICE (in FIRA 2000)","status=1");
	nwin.document.open();
	nwin.document.write("<HTML>");
	nwin.document.write("<TITLE>TOYO ITO &amp; ASSOCIATES, ARCHITECTS / BARCELONA OFFICE (in FIRA 2000)</TITLE>");
	nwin.document.writeln("<BODY>");
        nwin.document.write("<IMG SRC=\"bcn-en-j.gif\" width=\"620\" height=\"400\">");
    
	nwin.document.write("<BR>");
	nwin.document.write("");
	nwin.document.write("</BODY></HTML>");
	nwin.document.close();

	return false;
}
