take a look at this site:
http://24x7affiliate.com/index.php?Act=affil_regican some one figure out how i can remove the line beside the form.. i use dreamweaver 8 pro to design.
i checked, there is no image adopted.. i paste my php coding here.. can some 1 figure it out? urgent please...
xxxxxxxxxxxxxxxxxxxxxxxxxx
xxxx new_affi_regi.php xxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxx
xx
<?
//Last Modified By DPT on May/28/05 to fix issues with HTML
$Err =$_GET['Err'];
$Action =$_GET['Action'];
if ($Action=="affiliate")
$aff="selected = 'selected' ";
else
$mer="selected = 'selected' ";
?>
<style type="text/css">
<!--
.style5 {FONT-WEIGHT: bold; COLOR: #009900
}
-->
</style>
<table width="775" height="689" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="13" bgcolor="#FFFFFF"> </
td>
<td height="13" bgcolor="#0c80d6"> </
td>
<td height="13" bgcolor="#FFFFFF"> </
td>
</tr>
<tr>
<td width="15" height="92" bgcolor="#FFFFFF"> </
td>
<td width="747" background="images/bg_blue
s.jpg">&nb
sp;</td>
<td width="13" bgcolor="#FFFFFF"> </
td>
</tr>
<tr>
<td height="186" rowspan="2" bgcolor="#FFFFFF"> </
td>
<td height="468" bgcolor="#FFFFFF"><span class="ltrtbrdr1">
<? include_once "affil_regi.php"; ?>
</span></td>
<td height="186" rowspan="2" bgcolor="#FFFFFF"> </
td>
</tr>
<tr>
<td height="93" bgcolor="#FFFFFF"> </
td>
</tr>
</table>
<script language="javascript" type="text/javascript">
function viewLink()
{
url="forgotpass.php";
nw = open(url,'new','height=200
,width=450
,scrollbar
s=yes');
nw.focus();
}
</script>
xxxxxxxxxxxxxxxxxxxxx end of new_affi_regi.php xxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxx
xxxx
the file start with new_affi_regi.php then include the two file below...
xxxxxxxxxxxxxxxxxxxxxxxxxx
affil_regi.php xxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxx
xxxxxxxxxx
<?php
#-------------------------
----------
----------
----------
----------
----------
----
# Affilaite Registration Page
# Payment Gateways supported Are
# Paypal, Authorize.net, StormPay, eGold, check by mail, wire Transfer, Neteller
# Pgmmr : RR
# Date Created : 28-10-2004
# Date Modfd : 29-10-2004
# Last Modified: DPT on May/17/05 to add quotes to all value attributes on form
# Last Modified: DPT on May/28/05 to fix issues with HTML tags
#-------------------------
----------
----------
----------
----------
----------
----
# geting all payments gateways supported
# and its associated parametrs
$sql ="select * from partners_paymentgateway where pay_status like 'Active' and pay_name NOT LIKE 'WorldPay'";
$ret =mysql_query($sql);
# getting back form variable
# Err mgs
$msg = trim(stripslashes($_GET['m
sg']));
$err = $_GET['err'];
# Personal Information
$firstname = stripslashes($_GET['firstn
ame']);
$lastname = stripslashes($_GET['lastna
me']);
$company = stripslashes($_GET['compan
y']);
$url = stripslashes($_GET['url'])
;
$address = stripslashes($_GET['addres
s']);
$city = stripslashes($_GET['city']
);
$category = stripslashes($_GET['catego
ry']);
$phone = stripslashes($_GET['phone'
]);
$fax = stripslashes($_GET['fax'])
;
$mailid = stripslashes($_GET['mailid
']);
$country = stripslashes($_GET['countr
y']);
$address = stripslashes($_GET['addres
s']);
$minimumcheck = stripslashes($_GET['minmum
check']);
$affiliateid = stripslashes($_GET['affili
ateid']);
$modofpay = stripslashes($_GET['modofp
ay']);
$taxIdtxt = stripslashes(trim($_GET['t
axIdtxt'])
);
if($err=='2'){
$paymodes = explode("`~`",$_SESSION['P
AYMODE']);
# paypal email
$payapalemail = $paymodes[0];
# storm pay email
$stormmail = $paymodes[1];
# egold information
$payeename = $paymodes[2];
$acno = $paymodes[3];
# checkout information
$productid = $paymodes[4];
$checkoutid = $paymodes[5];
# authorize.net information.
$version = $paymodes[6];
$delimdata = $paymodes[7];
$relayresponse = $paymodes[8];
$login = $paymodes[9];
$trankey = $paymodes[10];
$cctype = $paymodes[11];
#-------------------------
----------
----------
----------
----------
--------
# Aditional informations added
#-------------------------
----------
----------
----------
----------
--------
$zipcode = $paymodes[12];
$state = $paymodes[13];
$timezone = $paymodes[14];
# Neteller account
$neteller_email = $paymodes[15];
$neteller_accnt = $paymodes[16];
# check by Mail
$checkpayee = $paymodes[17];
$checkcurr = $paymodes[18];
# Wire Transfer
$wire_AccountName = $paymodes[19];
$wire_AccountNumber = $paymodes[20];
$wire_BankName = $paymodes[21];
$wire_BankAddress = $paymodes[22];
$wire_BankCity = $paymodes[23];
$wire_BankState = $paymodes[24];
$wire_BankZip = $paymodes[25];
$wire_BankCountry = $paymodes[26];
$wire_BankAddressNumber= $paymodes[27];
$wire_Nominate = $paymodes[28];
if($relayresponse=="True")
$relayresponseselected1 = "selected = 'selected'";
else $relayresponseselected2 = "selected = 'selected'";
if($delimdata=="True") $delimdataselected1 = "selected = 'selected'";
else $delimdataselected2 = "selected = 'selected'";
if($cctype=="AUTH_CAPTURE"
) $cctypesel1 = "selected = 'selected'" ;
if($cctype=="AUTH_ONLY") $cctypesel2 = "selected = 'selected'" ;
if($cctype=="CAPTURE_ONLY"
) $cctypesel3 = "selected = 'selected'" ;
if($cctype=="CREDIT") $cctypesel4 = "selected = 'selected'" ;
if($cctype=="VOID") $cctypesel5 = "selected = 'selected'" ;
if($cctype=="PRIOR_AUTH_CA
PTURE") $cctypesel6 = "selected = 'selected'" ;
}
$bankno = stripslashes($_GET['bankno
']);
$bankname = stripslashes($_GET['bankna
me']);
$bankemail = stripslashes($_GET['bankem
ail']);
$bankaccount = stripslashes($_GET['bankac
count']);
$payableto = stripslashes($_GET['payabl
eto']);
#-------------------------
----------
----------
----------
----------
--------
# Aditional informations added
#-------------------------
----------
----------
----------
----------
--------
$zipcode = trim(stripslashes($_GET['z
ipcode']))
;
$state = trim(stripslashes($_GET['s
tate']));
$timezone = trim(stripslashes($_GET['t
imezone'])
);
$j=-12;
for($i=0 ;$i<=24 ;$i++)
{
if($timezone==$j) $sel[$i] ="selected = 'selected'" ;
else $sel[$i] =" " ;
$j++;
}
#-------------------------
----------
----------
----------
----------
--------
# Aditional informations added Ends Here
#-------------------------
----------
----------
----------
----------
--------
?>
<form method="post" name="reg" action="affil_reg_validate
.php?mode=
insert" >
<table width="620" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td class="textred" colspan="3">* <?=$reqd?></td>
</tr>
<tr>
<td align="center" class="textred" colspan="3"><?=$_GET['msg'
]?></td>
</tr>
<tr>
<td align="center" class="textred" colspan="3"> </td>
</tr>
<tr>
<td align="right" class="textred">*</td>
<td width="20%"><b><?=$lang_fi
rstname?><
/b></td>
<td>
<input type="text" name="firstnametxt" size="20" value="<?=$firstname?>" />
</td>
</tr>
<tr>
<td align="right" class="textred">*</td>
<td><b><?=$lang_Last?></b>
</td>
<td><input type="text" name="lastnametxt" size="20" value="<?=$lastname?>"/></
td>
</tr>
<tr>
<td align="right" class="textred">*</td>
<td><b><?=$lang_EmailId?><
/b></td>
<td><input type="text" name="emailidtxt" size="20" value="<?=$mailid?>" /></td>
</tr>
<tr>
<td align="right" class="textred">*</td>
<td width="20%"><span >
<b><?=$lang_Phone?></b>
</span></td>
<td><input type="text" name="phonetxt" size="20" value="<?=$phone?>"/> <span >
</span></td>
</tr>
<tr>
<td> </td>
<td><b><?=$lang_Fax?></b><
/td>
<td><input type="text" name="faxtxt" size="20" value="<?=$fax?>"/></td>
</tr>
<tr>
<td align="right" class="textred">*</td>
<td width="20%"><b><?=$lang_Co
mpany?></b
></td>
<td><input type="text" name="companytxt" size="20" value="<?=$company?>"/></t
d>
</tr>
<tr>
<td align="right" class="textred">*</td>
<td width="20%"><b><?=$lang_UR
L?></b></t
d>
<td><input type="text" name="urltxt" size="20" value="<?=$url?>" /></td>
</tr>
<tr>
<td align="right" class="textred">*</td>
<td><b><?=$lang_Address?><
/b></td>
<td><textarea rows="2" name="addresstxt" cols="20"><?=$address ?></textarea></td>
</tr>
<tr>
<td align="right" class="textred">*</td>
<td width="20%"><b><?=$lang_Ci
ty?></b></
td>
<td><input type="text" name="citytxt" size="20" value="<?=$city?>" /></td>
</tr>
<tr>
<td align="right" class="textred">*</td>
<td><b><?=$lang_state?></b
></td>
<td><input type="text" name="state" size="20" value="<?=$state?>" /></td>
</tr>
<tr>
<td align="right" class="textred">*</td>
<td width="20%"><b><?=$lang_Co
untry?></b
></td>
<td><select size="1" name="countrylst">
<option value="nill" >
<?=$lang_SelectaCountry?>
</option>
<?php
# getting all country from the table
$sql = "select * from partners_country";
$result = mysql_query($sql);
while($row=mysql_fetch_obj
ect($resul
t)){
if($country==$row->country
_name){
?>
<option value="<?=$row->country_na
me?>" selected='selected' >
<?=$row->country_name?>
</option>
<?php
}else{
?>
<option value="<?=$row->country_na
me?>" >
<?=$row->country_name?>
</option>
<?php
}
}
?>
</select></td>
</tr>
<tr>
<td align="right" class="textred">*</td>
<td width="20%"><b><?=$lang_zi
p?></b></t
d>
<td><input type="text" name="zipcode" size="20" value="<?=$zipcode?>" /></td>
</tr>
<tr>
<td align="right" class="textred"></td>
<td><b><?=$lang_taxId?></b
></td>
<td><input type="text" name="taxIdtxt" size="20" value="<?=$taxIdtxt?>" /></td>
</tr>
<tr>
<td align="right" class="textred">*</td>
<td><b><?=$lang_timezone?>
</b></td>
<td><select name="timezone">
<option <?=$sel[0]?> value="-12">Newzealand Time(-12)</option>
<option <?=$sel[1]?> value="-11">Midway Isles, Samoa (-11)</option>
<option <?=$sel[2]?> value="-10">Hawaii (-10)</option>
<option <?=$sel[3]?> value="-9">AKST - Alaska Standard Time(-9)</option>
<option <?=$sel[4]?> value="-8">PST - Pacific Standard Time(-8)</option>
<option <?=$sel[5]?> value="-7">MST - Mountain Standard Time(-7)</option>
<option <?=$sel[6]?> value="-6">CST - Central Standard Time(-6)</option>
<option <?=$sel[7]?> value="-5">EST - Eastern Standard Time(-5)</option>
<option <?=$sel[8]?> value="-4">SA West - Atlantic Time(-4)</option>
<option <?=$sel[9]?> value="-3">SA East - East Brasil Time (-3)</option>
<option <?=$sel[10]?> value="-2">Middle Atlantic (-2)</option>
<option <?=$sel[11]?> value="-1">Island Time (-1)</option>
<option <?=$sel[12]?> value="0">GMT - Greenwitch Meridian Time (0)</option>
<option <?=$sel[13]?> value="1">CET - Central European Time (+1)</option>
<option <?=$sel[14]?> value="2" >EET - East European Time (+2)</option>
<option <?=$sel[15]?> value="3">Irak, Kuwait, Russia(+3)</option>
<option <?=$sel[16]?> value="4">Mauritius, Kazachstan (+4)</option>
<option <?=$sel[17]?> value="5">West Asia (+5)</option>
<option <?=$sel[18]?> value="6">Central Asia (+6)</option>
<option <?=$sel[19]?> value="7">Indo China Time (+7)</option>
<option <?=$sel[20]?> value="8">Chinese Shore Time (+8)</option>
<option <?=$sel[21]?> value="9">JST - Japan Standard Time (+9)</option>
<option <?=$sel[22]?> value="10">AUS - Australian Time(+10)</option>
<option <?=$sel[23]?> value="11">Central Pacifik (+11)</option>
<option <?=$sel[24]?> value="12">Newzealand Time (12)</option>
</select></td>
<td></td>
</tr>
<tr>
<td align="right" class="textred">*</td>
<td><b><?=$lang_Category?>
</b></td>
<td><select size="1" name="categorylst">
<option selected='selected' value="nill">
<?=$lang_category?>
</option>
<?php
# getting all categories available
$sql = "select * from partners_category";
$result = mysql_query($sql);
while($row=mysql_fetch_obj
ect($resul
t)){
if($category==$row->cat_na
me) {
?>
<option value=<?=$row->cat_name?> selected='selected' >
<?=$row->cat_name?>
</option>
<?php
}else{
?>
<option value="<?=$row->cat_name?>
" >
<?=$row->cat_name?>
</option>
<?php
}
}
?>
</select></td>
<td></td>
</tr>
<tr>
<td width="20%"> </td>
<td width="20%"><b><?=$lang_Pa
rentID?></
b></td>
<td><select size="1" name="affiliateid">
<option selected="selected" value="nill">
<?=$parentselect?>
</option>
<?php
$sql = "SELECT affiliate_id, affiliate_firstname, affiliate_lastname FROM `partners_affiliate`WHERE affiliate_status = 'approved' ";
$result = mysql_query($sql);
while($row=mysql_fetch_obj
ect($resul
t)){
if($affiliateid==$row->aff
iliate_id)
{
?>
<option value="<?=$row->affiliate_
id?>" selected='selected' >
<?=ucwords(stripslashes($r
ow->affili
ate_firstn
ame))?> <?=ucwords(stripslashes($r
ow->affili
ate_lastna
me))?>
</option>
<?php
}else{
?>
<option value="<?=$row->affiliate_
id?>" >
<?=ucwords(stripslashes($r
ow->affili
ate_firstn
ame))?> <?=ucwords(stripslashes($r
ow->affili
ate_lastna
me))?>
</option>
<?php
}
}
?>
</select></td>
<td></td>
</tr>
<tr>
<td height="15" colspan="3" ><div align="center"><img src="images/visa.jpg" alt="Visa" width="48" height="48" /><img src="images/masterCard.jpg
" alt="Mastercard" width="48" height="48" /><img src="images/paypal.jpg" alt="Paypal" width="48" height="48" /><img src="images/eCheck.jpg" alt="eCheck" width="48" height="48" /></div></td>
</tr>
<tr>
<td height="5" colspan="3" ></td>
</tr>
</table>
<? include_once "reg_banking.php"; ?>
</form>
xxxxxxxxxxxxxxxxxxxxxxxxxx
xxxx end of affil_regi.php xxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxx
x
xxxxxxxxxxxxxxxxxxxxx reg_banking.php xxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxx
xxxxxxxxxx
x
<?
#-------------------------
----------
----------
----------
----------
----------
---
# opens terms file
# reads all contents
#-------------------------
----------
----------
----------
----------
----------
---
$filename = "admin/terms.htm";
$fp = fopen($filename,'r');
$contents = fread ($fp, filesize ($filename));
fclose($fp);
?>
<br/>
<table width="620" border="0" align="center" cellpadding="0" cellspacing="0" bordercolor="#FFFFFF" class="" id="" style="">
<tr>
<td height="10" bgcolor="#FFA200" align="center"><b>
<?=$lang_PaymentGateway?>
<select class="dropdown" name="modofpay" onchange="getpayment()">
<?//checking for each records
if(mysql_num_rows($ret)>0)
{
while($row=mysql_fetch_obj
ect($ret))
{ if($modofpay==$row->pay_na
me) $sel="selected = 'selected'";
else $sel ="";
?>
<option value="<?=$row->pay_name?>
" <?=$sel?>><?=$row->pay_nam
e?> </option>
<?
}
} ?>
</select>
</b> </td>
</tr>
<tr>
<td><font color="#FF0000">* <?=$allreqd?></font>
</td>
</tr>
<tr>
<td id="td_id">
</td>
</tr>
</table>
<p> </p>
<table width="620" align="center" cellpadding="0" cellspacing="0" bordercolor="#FFFFFF">
<tr>
<td height="20" bgcolor="#FFA200" align="center"><b><?=$lang
_terms_con
dn?></b> </td>
</tr>
<tr>
<td height="19"> </td>
</tr>
<tr>
<td height="19" align="center"><textarea name="termsCondn" cols="100" rows="20"><?=stripslashes(
$contents)
?>
</textarea></td>
</tr>
<tr>
<td height="19"> </td>
</tr>
<tr>
<td height="19" align="center"><input name="terms" type="checkbox" value="1"/> <?=$lang_terms?> </td>
</tr>
<tr>
<td height="19"> </td>
</tr>
<tr>
<td height="19" align="center">
<input type="submit" value="Register" name="B1" /> </td>
</tr>
</table>
<div id="layer_2checkout" style="position:absolute; visibility:hidden; width:615px; left:222px; top:741px; border:0px none #000000;">
<table width="90%" class="" align="center"><tr><td height='25' colspan='2' align='center'><?=$lang_2C
heckout?><
/td></tr><
tr><td height='25' width='50%' align='right'><?=$lang_che
ckoutid?>&
nbsp; 
;</td><td height='25' width='50%'> <input type='text' name='checkoutid' size='20' value='<?=$checkoutid?>' /></td></tr><tr><td height='25' width='50%'><?=$lang_produ
ctid?></td
><td height='25' width='50%'> <input type='text' name='productid' size='20' value='<?=$productid?>' /> </td></tr></table>
</div>
<div id="layer_paypal" style="position:absolute; visibility:hidden; width:615px; left:224px; top:740px; border: 0px none #000000;">
<table width="90%" class="" align="center"><tr><td height='25' colspan='2' align='center'><?=$lang_Pa
ypal?></td
></tr><tr>
<td height='25' width='50%' align='right'><?=$lang_pay
apalemail?
> &nb
sp;</td><t
d height='25' width='50%'> <input type='text' name='paypalemail' size='20' value='<?=$paypalemail?>' /> </td> </tr><tr> <td height='25' width='50%'> </td><td height='25' width='50%'> </td> </tr> </table>
</div>
<div id="layer_stormpay" style="position:absolute; visibility:hidden; width:615px; left:241px; top:740px; border: 0px none #000000;">
<table width="90%" class="" align="center"><tr ><td height='25' colspan='2' align='center'><?=$lang_St
ormpay?></
td> </tr><tr><td height='25' width='50%' align='right'><?=$lang_sto
rmemail?>&
nbsp; 
; </td> <td height='25' width='50%'> <input type='text' name='stormemail' size='20' value='<?=$stormmail?>' /> </td> </tr><tr> <td height='25' width='50%'> </td> <td height='25' width='50%'> </td> </tr></table>
</div>
<div id="layer_authorize" style="position:absolute; visibility:hidden; width:615px; left:226px; top:739px; border: 0px none #000000;">
<table width="90%" class="tablewbdr" align="center"><tr ><td height='25' colspan='2' align='center'><?=$lang_Au
thorize?><
/td> </tr><tr><td height='25' width='50%' align='right'><?=$lang_ver
sion?>&nbs
p; </
td><td height='25' width='50%'> <input name='version' type='text' value ='<?=$version?>' size='20' /> </td> </tr><tr><td height='25' width='50%' align='right'><?=$lang_del
imdata?>&n
bsp;
</td><td height='25' width='50%'> <select name='delimdata'><option value='True' <?=$delimdataselected1?>><
?=$regbank
_true?></o
ption> <option value='False' <?=$delimdataselected2?>><
?=$regbank
_false?></
option> </select></td> </tr><tr><td height='25' width='50%' align='right'><?=$lang_rel
ayresponse
?> &n
bsp;</td> <td height='25' width='50%'> <select name='relayresponse'> <option value='True' <?=$relayresponseselected1
?>><?=$reg
bank_true?
></option>
<option value='False' <?=$relayresponseselected2
?>><?=$reg
bank_false
?></option
></select>
</td></tr><tr><td height='25' width='50%' align='right'><?=$lang_log
in?>
</td
><td height='25' width='50%'> <input name='login' type='text' value ='<?=$login?>' size='20' /> </td> </tr><tr> <td height='25' width='50%' align='right'><?=$lang_tra
nkey?>&nbs
p; </
td> <td height='25' width='50%'> <input name='trankey' type='text' value ='<?=$trankey?>' size='20' /> </td> </tr><tr><td height='25' width='50%' align='right'><?=$lang_cct
ype?> 
; </t
d> <td height='25' width='50%'> <select name='cctype' ><option value='AUTH_CAPTURE' <?=$cctypesel1?>><?=$regba
nk_authcap
?></option
> <option value='AUTH_ONLY' <?=$cctypesel2?>><?=$regba
nk_authonl
y?></optio
n> <option value='CAPTURE_ONLY' <?=$cctypesel3?>><?=$regba
nk_caponly
?></option
> <option value='CREDIT' <?=$cctypesel4?>><?=$regba
nk_credit?
></option>
<option value='VOID' <?=$cctypesel5?>><?=$regba
nk_void?><
/option> <option value='PRIOR_AUTH_CAPTURE'
<?=$cctypesel6?>><?=$regba
nk_prior?>
</option> </select> </td> </tr></table>
</div>
<div id="layer_egold" style="position:absolute; visibility:hidden; width:615px; left:227px; top:741px; border: 0px none #000000;">
<table width="90%" class="" align="center"><tr ><td height='25' colspan='2' align='center'><?=$lang_eG
old?></td>
</tr><tr> <td height='25' width='50%' align='right'><?=$lang_acn
o?> &
nbsp;</td>
<td height='25' width='50%'> <input type='text' name='acno' size='20' value='<?=$acno?>' /> </td> </tr> <tr> <td height='25' width='50%' align='right'><?=$lang_pay
eename?>&n
bsp;
</td> <td height='25' width='50%'><input type='text' name='payeename' size='20' value='<?=$payeename?>' /> </td> </tr> </table>
</div>
<div id="layer_checkbymail" style="position:absolute; visibility:hidden; width:615px; left:244px; top:740px; border: 0px none #000000;">
<table width="90%" class="" align="center"> <tr><td height='25' colspan='2' align='center'><?=$lang_ch
eck_captio
n?></td></
tr><tr><td
height='25' width='50%' align='right'><?=$lang_che
ck_payee?>
&nbs
p;</td><td
height='25' width='50%'> <input type='text' name='checkpayee' size='20' value='<?=$checkpayee?>' /> </td></tr><tr><td height='25' width='50%' align='right'><?=$lang_che
ck_curr?>&
nbsp; 
;</td> <td height='25' width='50%'> <input type='text' name='checkcurr' size='20' value='<?=$checkcurr?>' /> </td> </tr><tr><td height='25' width='50%'> </td><td height='25' width='50%'> </td> </tr></table>
</div>
<div id="layer_neteller" style="position:absolute; visibility:hidden; width:615px; left:243px; top:740px; border: 0px none #000000;">
<table width="90%" class="" align="center"> <tr><td height='25' colspan='2' align='center'><?=$lang_ne
teller_cap
tion?></td
></tr><tr>
<td height='25' width='50%' align='right'><?=$lang_net
eller_emai
l?> &
nbsp;</td>
<td height='25' width='50%'> <input type='text' name='neteller_email' size='20' value='<?=$neteller_email?
>' /> </td></tr><tr><td height='25' width='50%' align='right'><?=$lang_net
eller_accn
t?> &
nbsp;</td>
<td height='25' width='50%'> <input type='text' name='neteller_accnt' size='20' value='<?=$neteller_accnt?
>' /> </td> </tr><tr><td height='25' width='50%'> </td><td height='25' width='50%'> </td> </tr></table>
</div>
<div id="layer_wiretransfer" style="position:absolute; visibility:hidden; width:615px; left:217px; top:683px; border: 0px none #000000;">
<table width="90%" class="" align="center"> <tr><td height='25' colspan='2' align='center'><?=$lang_wi
re_caption
?></td></t
r><tr><td height='25' width='50%' align='right'><?=$lang_wir
e_AccountN
ame?> 
; </t
d><td height='25' width='50%'> <input type='text' name='wire_AccountName' size='20' value='<?=$wire_AccountNam
e?>' /> </td></tr> <tr><td height='25' width='50%' align='right'><?=$lang_wir
e_AccountN
umber?>&nb
sp; <
/td> <td height='25' width='50%'> <input type='text' name='wire_AccountNumber' size='20' value='<?=$wire_AccountNum
ber?>' /> </td> </tr> <tr><td height='25' width='50%' align='right'><?=$lang_wir
e_BankName
?> &n
bsp;</td> <td height='25' width='50%'> <input type='text' name='wire_BankName' size='20' value='<?=$wire_BankName?>
' /> </td> </tr><tr><td height='25' width='50%' align='right' valign='top'><?=$lang_wire
_BankAddre
ss?>
</td
><td height='25' width='50%'> <textarea name='wire_BankAddress' rows='5' cols='27'><?=$wire_BankAdd
ress?></te
xtarea> </td> </tr><tr><td height='25' width='50%' align='right'><?=$lang_wir
e_BankCity
?> &n
bsp;</td><
td height='25' width='50%'> <input type='text' name='wire_BankCity' size='20' value='<?=$wire_BankCity?>
' /> </td> </tr><tr><td height='25' width='50%' align='right'><?=$lang_wir
e_BankStat
e?> &
nbsp;</td>
<td height='25' width='50%'> <input type='text' name='wire_BankState' size='20' value='<?=$wire_BankState?
>' /> </td> </tr><tr><td height='25' width='50%' align='right'><?=$lang_wir
e_BankZip?
> &nb
sp;</td> <td height='25' width='50%'> <input type='text' name='wire_BankZip' size='20' value='<?=$wire_BankZip?>'
/> </td> </tr><tr><td height='25' width='50%' align='right'><?=$lang_wir
e_BankCoun
try?> 
; </t
d> <td height='25' width='50%'> <input type='text' name='wire_BankCountry' size='20' value='<?=$wire_BankCountr
y?>' /> </td> </tr><tr><td height='25' width='50%' align='right'><?=$lang_wir
e_BankAddr
essNumber?
> &nb
sp;</td> <td height='25' width='50%'> <input type='text' name='wire_BankAddressNumb
er' size='20' value='<?=$wire_BankAddres
sNumber?>'
/> </td> </tr><tr><td height='25' width='50%' align='right'><?=$lang_wir
e_Nominate
?> &n
bsp;</td> <td height='25' width='50%'> <input type='text' name='wire_Nominate' size='20' value='<?=$wire_Nominate?>
' /> </td> </tr><tr><td height='25' width='50%'></td><td height='25' width='50%'> </td> </tr> </table>
</div>
<script language="javascript" type="text/javascript">
function getpayment() {
if(document.reg.modofpay.v
alue=="2ch
eckout")
{
document.getElementById("t
d_id").hei
ght = 190;
if(IE) document.getElementById("l
ayer_2chec
kout").sty
le.posTop = 725;
document.getElementById("l
ayer_2chec
kout").sty
le.visibil
ity = 'visible';
}
if(document.reg.modofpay.v
alue=="Pay
pal")
{
document.getElementById("t
d_id").hei
ght = 75;
if(IE) document.getElementById("l
ayer_paypa
l").style.
posTop = 725;
document.getElementById("l
ayer_paypa
l").style.
visibility
= 'visible';
}
if(document.reg.modofpay.v
alue=="Sto
rmpay")
{
document.getElementById("t
d_id").hei
ght = 75;
if(IE) document.getElementById("l
ayer_storm
pay").styl
e.posTop = 725;
document.getElementById("l
ayer_storm
pay").styl
e.visibili
ty = 'visible';
}
if(document.reg.modofpay.v
alue=="Aut
horize.net
")
{
document.getElementById("t
d_id").hei
ght = 205;
if(IE) document.getElementById("l
ayer_autho
rize").sty
le.posTop = 725;
document.getElementById("l
ayer_autho
rize").sty
le.visibil
ity = 'visible';
}
if(document.reg.modofpay.v
alue=="E-G
old")
{
document.getElementById("t
d_id").hei
ght = 95;
if(IE) document.getElementById("l
ayer_egold
").style.p
osTop = 725;
document.getElementById("l
ayer_egold
").style.v
isibility = 'visible';
}
if(document.reg.modofpay.v
alue=="Che
ckByMail")
{
document.getElementById("t
d_id").hei
ght = 95;
if(IE) document.getElementById("l
ayer_check
bymail").s
tyle.posTo
p = 725;
document.getElementById("l
ayer_check
bymail").s
tyle.visib
ility = 'visible';
}
if(document.reg.modofpay.v
alue=="NET
eller")
{
document.getElementById("t
d_id").hei
ght = 195;
if(IE) document.getElementById("l
ayer_netel
ler").styl
e.posTop = 725;
document.getElementById("l
ayer_netel
ler").styl
e.visibili
ty = 'visible';
}
if(document.reg.modofpay.v
alue=="Wir
eTransfer"
)
{
document.getElementById("t
d_id").hei
ght = 360;
if(IE) document.getElementById("l
ayer_wiret
ransfer").
style.posT
op = 725;
document.getElementById("l
ayer_wiret
ransfer").
style.visi
bility = 'visible';
}
hide_other_layers(document
.reg.modof
pay.value)
;
}
function hide_other_layers(value){
if(value!="2checkout") document.getElementById("l
ayer_2chec
kout").sty
le.visibil
ity = 'hidden';
if(value!="Paypal") document.getElementById("l
ayer_paypa
l").style.
visibility
= 'hidden';
if(value!="Stormpay") document.getElementById("l
ayer_storm
pay").styl
e.visibili
ty = 'hidden';
if(value!="Authorize.net")
document.getElementById("l
ayer_autho
rize").sty
le.visibil
ity = 'hidden';
if(value!="E-Gold") document.getElementById("l
ayer_egold
").style.v
isibility = 'hidden';
if(value!="CheckByMail") document.getElementById("l
ayer_check
bymail").s
tyle.visib
ility = 'hidden';
if(value!="NETeller") document.getElementById("l
ayer_netel
ler").styl
e.visibili
ty = 'hidden';
if(value!="WireTransfer") document.getElementById("l
ayer_wiret
ransfer").
style.visi
bility = 'hidden';
}
</script>
<script language="javascript" type="text/javascript">
var ua = navigator.userAgent.toLowe
rCase(); //alert(ua);
var NN4 = IE4=OP6=KO3=false, OP=!!self.opera;
var IE = ua.indexOf("msie")!=-1&&!O
P&&ua.inde
xOf("webtv
")==-1;
var MAC = (ua.indexOf("firefox")) != -1;
var OP = (ua.indexOf("opera")) != -1;
if(document.reg.modofpay.v
alue=="2ch
eckout")
{
document.getElementById("t
d_id").hei
ght = 190;
if(IE) document.getElementById("l
ayer_2chec
kout").sty
le.posTop = 725;
document.getElementById("l
ayer_2chec
kout").sty
le.visibil
ity = 'visible';
}
if(document.reg.modofpay.v
alue=="Pay
pal")
{
document.getElementById("t
d_id").hei
ght = 75;
if(IE) document.getElementById("l
ayer_paypa
l").style.
posTop = 725;
document.getElementById("l
ayer_paypa
l").style.
visibility
= 'visible';
}
if(document.reg.modofpay.v
alue=="Sto
rmpay")
{
document.getElementById("t
d_id").hei
ght = 75;
if(IE) document.getElementById("l
ayer_storm
pay").styl
e.posTop = 725;
document.getElementById("l
ayer_storm
pay").styl
e.visibili
ty = 'visible';
}
if(document.reg.modofpay.v
alue=="Aut
horize.net
")
{
document.getElementById("t
d_id").hei
ght = 205;
if(IE) document.getElementById("l
ayer_autho
rize").sty
le.posTop = 725;
document.getElementById("l
ayer_autho
rize").sty
le.visibil
ity = 'visible';
}
if(document.reg.modofpay.v
alue=="E-G
old")
{
document.getElementById("t
d_id").hei
ght = 95;
if(IE) document.getElementById("l
ayer_egold
").style.p
osTop = 725;
document.getElementById("l
ayer_egold
").style.v
isibility = 'visible';
}
if(document.reg.modofpay.v
alue=="Che
ckByMail")
{
document.getElementById("t
d_id").hei
ght = 95;
if(IE) document.getElementById("l
ayer_check
bymail").s
tyle.posTo
p = 725;
document.getElementById("l
ayer_check
bymail").s
tyle.visib
ility = 'visible';
}
if(document.reg.modofpay.v
alue=="NET
eller")
{
document.getElementById("t
d_id").hei
ght = 195;
if(IE) document.getElementById("l
ayer_netel
ler").styl
e.posTop = 725;
document.getElementById("l
ayer_netel
ler").styl
e.visibili
ty = 'visible';
}
if(document.reg.modofpay.v
alue=="Wir
eTransfer"
)
{
document.getElementById("t
d_id").hei
ght = 360;
if(IE) document.getElementById("l
ayer_wiret
ransfer").
style.posT
op = 725;
document.getElementById("l
ayer_wiret
ransfer").
style.visi
bility = 'visible';
}
</script>
xxxxxxxxxxxxxxxxxxxxxxxxxx
xxxxxxxxxx
xxxxxxxxxx
xxxxxxxxxx
xxxxxxxxxx
xxxxxxxxxx
xxxxxxx
can some one tell me to remove the line?? plz.. i need help urgently...