function hotkey(keyStroke) {
var EventStatus = event.srcElement.tagName;
if(EventStatus!='INPUT'&&EventStatus!='TEXTAREA') {

isNetscape=(document.layers);
eventChooser = (isNetscape) ? keyStroke.which : event.keyCode;
which = String.fromCharCode(eventChooser).toLowerCase();

//Ã³À½À¸·Î
if (which == '1') window.location = 'http://leeminwoo.pe.kr/v4/main.html';
//ÇÁ·Ñ·Î±×
if (which == '2') window.location = 'http://leeminwoo.pe.kr/bbs/zboard.php?id=prologue';
//´ÙÀÌ¾î¸®
if (which == '3') window.location = 'http://leeminwoo.pe.kr/bbs/zboard.php?id=lovemode_m';
//ÀÌ¹ÌÁö
if (which == '4') window.location = 'http://leeminwoo.pe.kr/bbs/zboard.php?id=lovemode_b';
//ÀÌ¾ß±â
if (which == '5') window.location = 'http://leeminwoo.pe.kr/bbs/zboard.php?id=study1';
//°øºÎ¹æ
if (which == '6') window.location = 'http://leeminwoo.pe.kr/bbs/zboard.php?id=study2';
//¸µÅ©
if (which == '7') window.location = 'http://leeminwoo.pe.kr/bbs/zboard.php?id=design';
//ÀÚ·á½Ç
if (which == '8') window.location = 'http://leeminwoo.pe.kr/bbs/zboard.php?id=guest2';
//¸ÖÆ¼¹Ìµð¾î
if (which == '9') window.location = 'http://leeminwoo.pe.kr/dsu/';
//»çÀÌÆ®¾È³»
if (which == '0') window.location = 'http://leeminwoo.pe.kr/link';

}
}
document.onkeypress = hotkey;