// JavaScript Document

function openWindow1(){
	win1=window.open("","newOne","width=1050,height=800,menubar=no,scrollbars=yes,resizable=yes");
	win1.document.write("<html><head></head><body>");
	win1.document.write("<img src='image/up_sample1.gif'><br><br><img src='image/up_sample2.gif'>");
	win1.document.write("</body></html>");
	win1.document.close();
}

function openWindow2(){
	win1=window.open("","newOne","width=850,height=650,menubar=no,scrollbars=yes,resizable=yes");
	win1.document.write("<html><head></head><body>");
	win1.document.write("<img src='image/up_sample3.gif'>");
	win1.document.write("</body></html>");
	win1.document.close();
}

