function OpenWin(number){
	x = (screen.width - 800) / 2;
	y = (screen.height - 700) / 2;
	var url = "./../sample1.asp?SEQNO=" + number;
    win=window.open(url,"_new","screenX="+x+",screenY="+y+",left="+x+",top="+y+",width=800,height=600,scrollbars=yes,resizable=yes,menubar=yes,status=no'");
}
