function link_go(form) {
var f = document.linkform;
var uid = new Date().getTime(); 
var myindex=f.link_sel.selectedIndex; 
str = new String(f.link_sel.options[myindex].value); 
strarray = str.split(/,/); 

if (strarray[0] == "normal") { // ÇöÀçÃ¢¿¡¼­ ¿­±â
parent.location.href = strarray[1];
}

if (strarray[0] == "_blank") { // »õÃ¢¿¡¼­ ¿­±â
window.open(strarray[1], uid, ""); 
}

if (strarray[0] == "popup") { // popupÃ¢À¸·Î ¿­±â
window.open(strarray[1], uid, "'width=550,height=450,toolbars=0,scrollbars=0,location=0,statusbars=0,menubars=0"); 
}

myindex = 0;
}


function jump_go(form) {
var f = document.jumpform;
var uid = new Date().getTime(); 
var myindex=f.jump_sel.selectedIndex; 
str = new String(f.jump_sel.options[myindex].value); 
strarray = str.split(/,/); 

if (strarray[0] == "normal") { // ÇöÀçÃ¢¿¡¼­ ¿­±â
parent.location.href = strarray[1];
}

if (strarray[0] == "_blank") { // »õÃ¢¿¡¼­ ¿­±â
window.open(strarray[1], uid, ""); 
}

if (strarray[0] == "popup") { // popupÃ¢À¸·Î ¿­±â
window.open(strarray[1], uid, "'width=550,height=450,toolbars=0,scrollbars=0,location=0,statusbars=0,menubars=0"); 
}

myindex = 0;
}
