// JavaScript Document

function openWindow1(){
	win1=window.open("","newOne","width=770,height=600,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=790,height=630,menubar=no,scrollbars=yes,resizable=yes");
	win1.document.write("<html><head></head><body>");
	win1.document.write("<img src='image/up_sample3.gif'><br><br><img src='image/up_sample4.gif'>");
	win1.document.write("</body></html>");
	win1.document.close();
}
