// javalab_2.js¿¡¼­ »ç¿ëÇÏ´Â º¯¼ö
var title_subtext = "";

function writeHeader(title, headline)
{
	// javalab_2.js¿¡¼­ »ç¿ëÇÏ´Â º¯¼ö
	title_subtext = headline;

	// ¹®¼­ÀÇ Á¦¸ñ
	document.write ("<HTML><HEAD><TITLE>"+title+"</TITLE></HEAD><BODY><center>");

	// ½ºÅ¸ÀÏ
	document.write ("<style type=text/css>");
	document.write ("body {FONT-SIZE:12pt;}");
	document.write ("td {FONT-SIZE:12pt;}");
	document.write ("a:link {FONT-SIZE:12pt;TEXT-DECORATION:none}");
	document.write ("a:visited {FONT-SIZE:12pt;TEXT-DECORATION:none}");
	document.write ("a:hover {FONT-SIZE:12pt;TEXT-DECORATION:underline}");
	document.write ("</style>");

	// À§ÂÊ Å¸ÀÌÆ²
	document.write ("<table width=910 cellspacing=5 cellpadding=0>");
	document.write ("<tr>");
	document.write ("	<td class=title width=33% align=left valign=middle>");
	document.write ("		<img src=../../../img_java_lab.gif border=0>");
	document.write ("	</td>");
	document.write ("</tr>");
	document.write ("</table>");

	// Á¦¸ñÇ¥½ÃÁÙ
	document.write ("<table width=100% cellspacing=0 cellpadding=0>");
	document.write ("<tr>");
	document.write ("	<td align=center bgcolor=#6579D7>");
	document.write ("		<table width=910 cellspacing=5 cellpadding=0>");
	document.write ("		<tr>");
	document.write ("			<td><font color=yellow><b> ¢º "+title+"</B></font></td>");
	document.write ("			<td align=right></td>");
	document.write ("		</tr>");
	document.write ("		</table>");
	document.write ("	</td>");
	document.write ("</tr>");
	document.write ("</table>");

	// ÀÚ¹Ù¾ÖÇÃ¸´ ¹× ³»¿ëÀÌ µé¾î°¡±â À§ÇÑ °ø°£
	document.write ("<table width=910 cellspacing=5 cellpadding=0>");
	document.write ("<tr>");
	document.write ("	<td>");

	// Á¦¸ñ¼³¸íÀÌ µé¾î°¡´Â °÷
	document.write ("		<TABLE CELLPADDING=0 CELLSPACING=0 BORDER=0 WIDTH=100%>");
	document.write ("		<TR>");
	document.write ("			<TD ALIGN=LEFT VALIGN=TOP WIDTH=15><IMG SRC=../../../img_bullet_1.gif BORDER=0></TD>");
	document.write ("			<TD ALIGN=LEFT VALIGN=TOP>"+headline+"</TD>");
	document.write ("		</TR>");
	document.write ("		</TABLE>");
	document.write ("	<HR>");
}
