prettyFont.font = "../Bold.ttf"; // 타이틀font name prettyFont.size = 18; // font size prettyFont.bgColor = "ffffff"; // background color prettyFont.txtColor = "777777"; // text color prettyFont.notColor = "777777"; // notice color function prettyFont(txt,notice) { var str = ''; if (typeof notice == "undefined") notice = "false"; str += ''+txt+''; document.write(str); } prettyFont1.font = "../Extra.ttf"; // 좌측메뉴 off prettyFont1.size = 9; // font size prettyFont1.bgColor = "ffffff"; // background color prettyFont1.txtColor = "666666"; // text color prettyFont1.notColor = "666666"; // notice color function prettyFont1(txt,notice) { var str = ''; if (typeof notice == "undefined") notice = "false"; str += ''+txt+''; document.write(str); } prettyFont2.font = "../Extra.ttf"; // 좌측메뉴 on prettyFont2.size = 9; // font size prettyFont2.bgColor = "ffffff"; // background color function prettyFont2(txt,notice,color,size) { var str = ''; if(color) { txtcolor = color; notcolor = color; } else { txtcolor = prettyFont2.txtColor; notcolor = prettyFont2.notColor; } if (typeof notice == "undefined") notice = "false"; str += ''+txt+''; document.write(str); } prettyFont3.font = "../Extra.ttf"; // 타이틀font name prettyFont3.size = 14; // font size prettyFont3.bgColor = "ffffff"; // background color prettyFont3.txtColor = "336599"; // text color prettyFont3.notColor = "336599"; // notice color function prettyFont3(txt,notice) { var str = ''; if (typeof notice == "undefined") notice = "false"; str += ''+txt+''; document.write(str); } prettyFont4.font = "../Bold.ttf"; // 타이틀2 prettyFont4.size = 9; // font size prettyFont4.bgColor = "ffffff"; // background color prettyFont4.txtColor = "999999"; // text color prettyFont4.notColor = "999999"; // notice color function prettyFont4(txt,notice,color) { var str = ''; if(color) { txtcolor = color; notcolor = color; } else { txtcolor = prettyFont4.txtColor; notcolor = prettyFont4.notColor; } if (typeof notice == "undefined") notice = "false"; str += ''+txt+''; document.write(str); } prettyFont5.font = "../Bold.ttf"; // 영문좌측메뉴 off prettyFont5.size = 10; // font size prettyFont5.bgColor = "ffffff"; // background color prettyFont5.txtColor = "666666"; // text color prettyFont5.notColor = "666666"; // notice color function prettyFont5(txt,notice) { var str = ''; if (typeof notice == "undefined") notice = "false"; str += ''+txt+''; document.write(str); } prettyFont6.font = "../Extra.ttf"; // 영문좌측메뉴 on prettyFont6.size = 10; // font size prettyFont6.bgColor = "ffffff"; // background color function prettyFont6(txt,notice,color,size) { var str = ''; if(color) { txtcolor = color; notcolor = color; } else { txtcolor = prettyFont6.txtColor; notcolor = prettyFont6.notColor; } if (typeof notice == "undefined") notice = "false"; str += ''+txt+''; document.write(str); }