function open_win_1(){
window.open("q_001.html","","width=420,height=480,left=50,top=50,menubar=no,toolbar=no,location=no,status=no,scrollbars=no,resizable=no");
}
function open_win_mailbin(){
window.open("mailbin.php","","width=420,height=480,left=50,top=50,menubar=no,toolbar=no,location=no,status=no,scrollbars=yes,resizable=no");
}
function open_win_2(){
window.open("e_8.html","","width=550,height=700,left=50,top=50,menubar=no,toolbar=no,location=no,status=no,scrollbars=yes,resizable=yes");
}
function open_color(){
window.open("color.html","","width=550,height=700,left=50,top=50,menubar=no,toolbar=no,location=no,status=no,scrollbars=yes,resizable=yes");
}
function open_resize(){
window.open("Jump_resize.php","","width=550,height=700,left=50,top=50,adrressbar=no menubar=no,toolbar=no,location=no,status=no,scrollbars=yes,resizable=yes");
}
function pageup(e) {
UAGENT = navigator.userAgent.toUpperCase();
if (UAGENT.indexOf("MSIE") >=0) { posi = event.y; }
else { posi = e.pageY; }
moveObje(posi);
}

function moveObje(position) {
move = position / 10;
point = parseInt(position - move);
scrollTo(0,point);
if (point > 0) { setTimeout("moveObje(point)",10); }

}