function show_page (file_path,width,height,left,top) {

newWindow = window.open(file_path,"popup","width="+width+",height="+height+",left="+left+",top="+top+",menubar=no,status=no,scrollable=yes,scrolling=0,resizable=no");
newWindow.focus();      if (newWindow.scrollbars && newWindow.scrollbars.visible == false)
      newWindow.scrollbars.visible = true;
}

function openaction() {
var n=open('shock.html','new','width=840,height=640,menubar=no,status=no,scrollable=no,scrolling=0,resizable=no');
}
