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/v3/main.html';
//ÇÁ·Ñ·Î±×
if (which == '2') window.location = 'http://leeminwoo.pe.kr/v3/pro.html';
//´ÙÀÌ¾î¸®
if (which == '3') window.location = 'http://leeminwoo.pe.kr/bbs/zboard.php?id=diary';
//ÀÌ¹ÌÁö
if (which == '4') window.location = 'http://leeminwoo.pe.kr/bbs/zboard.php?id=photo';
//ÀÌ¾ß±â
if (which == '5') window.location = 'http://leeminwoo.pe.kr/bbs/zboard.php?id=free';
//°øºÎ¹æ
if (which == '6') window.location = 'http://leeminwoo.pe.kr/bbs/zboard.php?id=web';
//¸µÅ©
if (which == '7') window.location = 'http://leeminwoo.pe.kr/bbs/zboard.php?id=link';
//ÀÚ·á½Ç
if (which == '8') window.location = 'http://leeminwoo.pe.kr/bbs/zboard.php?id=pds';
//¸ÖÆ¼¹Ìµð¾î
if (which == '9') window.location = 'http://leeminwoo.pe.kr/v3/image.html';
//»çÀÌÆ®¾È³»
if (which == '0') window.location = 'http://leeminwoo.pe.kr/v3/site.html';

}
}
document.onkeypress = hotkey;