我正在尝试制作一些网站,并想问一些问题。该网站的主文件是 main.asp。在 main.asp 中,我插入了 notice.jpg 文件作为弹出窗口。
我想这样做,如果我点击弹出窗口,弹出窗口就会消失,新的大窗口(www.charming.or.kr/jeju/)会出现。谁可以帮我这个事?以下是我的部分来源。
<head>
<meta http-equiv="Content-Type" content="text/html; charset=euc-kr" />
<title><!--#include file="../include/title.asp"--></title>
<style type="text/css">
@import url(../css/comm.css);
</style>
<script language='javascript'>
function OpenWin(dest)
{
posy = screen.Height/2 - 100;
posx = screen.Width /2 - 200;
StartWin = window.open(dest,
"notice_popup","toolbar=no,channelmode=no,left="+posx+",top="+posy+",location=no,directories=no,w idth=743,height=720,resizable=no,menubar=no,scroll=no");
}
</script>
</head>
<body onload="OpenWin('../img/main/Notice.jpg')" >