﻿function putCommonHead(sPath){
	if (sPath==""){
		sPath = "..";
	}
	common_head = '\t<table width="800" cellspacing="0" cellpadding="0">\n'
		+ '\t\t<tr><td class="toplogo">\n'
		+ '\t\t\t<img src="' + sPath + '/img/toplogo.gif" alt="Kaspersky Logo">\n'
		+ '\t\t</td></tr>\n'
		+ '\t\t<tr><td class="maintitle">\n'
		+ '\t\t\tKaspersky Small Office Security - <span class="portal">ポータルサイト</span>'
		+ '\t\t</td></tr>'
		+ '\t</table>';
	document.write(common_head);
}

function putCommonFoot() {
	common_foot = '\t\t<hr>\n'
		+ '\t\t<div class="footer">'
		+ '\t\t&copy\; 2010 Kaspersky Labs Japan'
		+ '</div>';
	document.write(common_foot);

}

