<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>AddBank</title>
<style>
@import "Rachathawa/stylesheet/sty.css";
</style>
<script language="JavaScript">
function getListBox()
{
var List = window.parent.document.getElementById('Pro_id');
var Num_tel = window.parent.document.getElementById('Num_tel').value;
var lengths = List.length;
if(Num_tel=='')
{
window.parent.document.getElementById('Num_tel').focus();
return false;
}else{
List[lengths] = new Option(Num_tel,Num_tel);
window.parent.document.getElementById('Num_tel').value='';
window.parent.document.getElementById('Num_tel').focus();
}
}
function getfax()
{
var List = window.parent.document.getElementById('Fax_number');
var Num_fax = window.parent.document.getElementById('Num_fax').value;
var lengths = List.length;
if(Num_fax=='')
{
window.parent.document.getElementById('Num_fax').focus();
return false;
}else{
List[lengths] = new Option(Num_fax,Num_fax);
window.parent.document.getElementById('Num_fax').value='';
window.parent.document.getElementById('Num_fax').focus();
}
}