function jmpUrl(url){
window.open(url,'_self');
}
function jmpUrlNew(url){
window.open(url,'_new');
}
function VIEW_ONOFF(id){
x=document.getElementById(id);
if(x.style.display=='none'){
x.style.display='';
}else{
x.style.display='none';
}
}
function conf_ref(url,str){
if(confirm(str)){
window.open(url,'_self');
}
}

function subWindow(url,tgt){
var w;
w = window.open(url,tgt,"width=700,height=500,resizable=yes,scrollbars=no");
w.focus();
return false;
}

