| 1 | /* |
|---|
| 2 | * Copyright(c) 2000-2007 LOCKON CO.,LTD. All Rights Reserved. |
|---|
| 3 | * |
|---|
| 4 | * http://www.lockon.co.jp/ |
|---|
| 5 | */ |
|---|
| 6 | <!-- |
|---|
| 7 | function win01(URL,Winname,Wwidth,Wheight){ |
|---|
| 8 | var WIN; |
|---|
| 9 | WIN = window.open(URL,Winname,"width="+Wwidth+",height="+Wheight+",scrollbars=no,resizable=no,toolbar=no,location=no,directories=no,status=no"); |
|---|
| 10 | WIN.focus(); |
|---|
| 11 | } |
|---|
| 12 | // --> |
|---|
| 13 | |
|---|
| 14 | <!-- |
|---|
| 15 | function win02(URL,Winname,Wwidth,Wheight){ |
|---|
| 16 | var WIN; |
|---|
| 17 | WIN = window.open(URL,Winname,"width="+Wwidth+",height="+Wheight+",scrollbars=yes,resizable=yes,toolbar=no,location=no,directories=no,status=no"); |
|---|
| 18 | WIN.focus(); |
|---|
| 19 | } |
|---|
| 20 | // --> |
|---|
| 21 | |
|---|
| 22 | <!-- |
|---|
| 23 | function win03(URL,Winname,Wwidth,Wheight){ |
|---|
| 24 | var WIN; |
|---|
| 25 | WIN = window.open(URL,Winname,"width="+Wwidth+",height="+Wheight+",scrollbars=yes,resizable=yes,toolbar=no,location=no,directories=no,status=no,menubar=no"); |
|---|
| 26 | WIN.focus(); |
|---|
| 27 | } |
|---|
| 28 | // --> |
|---|
| 29 | |
|---|
| 30 | <!-- |
|---|
| 31 | function winSubmit(URL,formName,Winname,Wwidth,Wheight){ |
|---|
| 32 | WIN = window.open(URL,Winname,"width="+Wwidth+",height="+Wheight+",scrollbars=yes,resizable=yes,toolbar=no,location=no,directories=no,status=no,menubar=no"); |
|---|
| 33 | document.forms[formName].target = Winname; |
|---|
| 34 | WIN.focus(); |
|---|
| 35 | } |
|---|
| 36 | //--> |
|---|
| 37 | |
|---|
| 38 | <!-- |
|---|
| 39 | function ChangeParent() |
|---|
| 40 | { |
|---|
| 41 | window.opener.location.href="../contact/index.php"; |
|---|
| 42 | } |
|---|
| 43 | //--> |
|---|
| 44 | |
|---|
| 45 | |
|---|
| 46 | <!--// |
|---|
| 47 | function CloseChild() |
|---|
| 48 | { |
|---|
| 49 | window.close(); |
|---|
| 50 | } |
|---|
| 51 | //--> |
|---|