|
This 22 message thread spans 2 pages: [1] 2 > >
|
|
hello everyone!
i had a project that will add the value of a text box in the child
window to the list box in the parent window, would appreciate if anyone
could help me how to do this, any help would be highly appreciated,
below is my code:
PARENT WINDOW CODE
================
<HTML>
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
<!--
// pop-up window
function PopUp(PopUpUrl){
var ScreenWidth=window.screen.width;
var ScreenHeight=window.screen.height;
var movefromedge=0;
placementx=(ScreenWidth/2)-((310)/500);
placementy=(ScreenHeight/2)-((240+10)/6);
WinPop=window.open(PopUpUrl,"","width=310,height=240,toolbar=0,location=0,directories=0,status=0,scrollbars=0,menubar=0,resizable=0,left="+placementx+",top="+placementy+",screenX="+placementx+",screenY="+placementy+",");
}
// -->
</SCRIPT>
</HEAD>
<BODY BGCOLOR="#E0EOFF">
<FONT FACE="sans-serif">
<!--
-->
<FORM NAME="MYFORM">
<CENTER>
<TABLE CELLPADDING="7" CELLSPACING="0" BORDER = "3" WIDTH="673" bgcolor="#FFFFFF">
<TR>
<TD>
</FONT>
<FONT FACE="Verdana">
<TABLE WIDTH="100%" CELLPADDING="0" CELLSPACING="0" BORDER="0">
<TR>
<TD>
<TABLE WIDTH="100%" CELLPADDING="0" CELLSPACING="0" BORDER="0">
<TR>
<TD WIDTH="36%" height="18" align="center">
<p align="center"><b>
<FONT FACE="Verdana" size="2">
Selected Recipients</FONT></b></TD>
</TR>
<TR>
<TD width="36%">
<p align="center">
<FONT FACE="sans-serif">
<SELECT NAME="PICKED" SIZE="9" MULTIPLE onChange="DoDeselectBlankLine(this.form.PICKED)" style="width: 240; height: 150">
<option value="0"></option>
</SELECT></FONT></TD>
</TR>
</TABLE>
</TD>
</TR>
</TR>
</TABLE>
<TABLE WIDTH="100%" CELLPADDING="0" CELLSPACING="0" BORDER="0">
<TR>
<TD>
<TABLE WIDTH="100%" CELLPADDING="0" CELLSPACING="0" BORDER="0">
<TR>
<TD HEIGHT="5" colspan="2">
</TD>
</TR>
<TR>
<td width="83%">
<FONT FACE="sans-serif">
<p align="center">
<p align="center">
</FONT></td>
<td width="16%">
<FONT FACE="sans-serif">
<input type="button" name="button" value="Lunch Keypad" onclick="PopUp('/forum/pad.htm')" style="width: 99; height: 26; float: left"></FONT></td>
</TR>
</TABLE>
</TD>
</TR>
</TABLE>
<TABLE WIDTH="100%" CELLPADDING="0" CELLSPACING="0" BORDER="0">
<TR>
<TD HEIGHT="2">
</TD>
</TR>
</TABLE>
</TD>
</TR>
</TABLE>
</CENTER>
</FORM>
</FONT>
</BODY>
</HTML>
CHILD WINDOW CODE
================
<html>
<head>
<title>Paging Keypad</title>
<SCRIPT language=JavaScript>
<!-- Begin keyapd script
var Memory = 0;
var Number1 = "";
var Number2 = "";
var NewNumber = "blank";
var opvalue = "";
function Display(displaynumber) {
document.keypad.answer.value = displaynumber;
}
function ClearKeypad() {
Number1 = "";
Number2 = "";
NewNumber = "blank";
Display("");
}
function Backspace(answer) {
answerlength = answer.length;
answer = answer.substring(0, answerlength - 1);
if (Number2 != "") {
Number2 = answer.toString();
Display(Number2);
} else {
Number1 = answer.toString();
Display(Number1);
}
}
function CheckNumber(answer) {
if(answer == ".") {
Number = document.keypad.answer.value;
if(Number.indexOf(".") != -1) {
answer = "";
}
}
if(NewNumber == "yes") {
Number2 += answer;
Display(Number2);
}
else {
if(NewNumber == "blank") {
Number1 = answer;
Number2 = "";
NewNumber = "no";
}
else {
Number1 += answer;
}
Display(Number1);
}
}
function SendInfo(){
var txtVal = document.keypad.answer.value;
var sel = window.opener.document.MYFORM.PICKED;
sel.options[sel.options.length] = new Option("answer","value");
window.opener.document.MYFORM.PICKED.value = txtVal;
}
function closeIt() {
close();
}
// Input numbers only
var isIE = document.all?true:false;
var isNS = document.layers?true:false;
function onlyDigits(e) {
var _ret = true;
if (isIE) {
if (window.event.keyCode < 46 || window.event.keyCode > 57) {
window.event.keyCode = 0;
_ret = false;
}
}
if (isNS) {
if (e.which < 46 || e.which > 57) {
e.which = 0;
_ret = false;
}
}
return (_ret);
}
// End keypad script -->
</SCRIPT>
</head>
<body>
<CENTER>
<FORM name=keypad>
<TABLE width=220 bgColor=#aaaaaa id="table1">
<TBODY>
<TR>
<TD>
<TABLE bgColor=#cccccc border=1 id="table2" width="213">
<TBODY>
<TR>
<TD>
<TABLE cellPadding=0 border=0 id="table3" width="243">
<TBODY>
<TR>
<TD bgColor=#000080>
<p align="center"><font face="Verdana" size="2"><B
style="COLOR: white">Paging Keypad</B></font></TD></TR>
<TR>
<TD>
<TABLE width="101%" border=0 id="table4">
<TBODY>
<TR>
<TD colSpan=3>
<p align="center">
<INPUT maxLength=30
onchange=CheckNumber(this.value) size=36
name=answer></TD></TR>
<TR>
<TD>
<INPUT class=blue onclick="CheckNumber('7'); return false;" type=button value=" 7 " name=pindot7 style="width: 84"></TD>
<TD width="27%">
<INPUT class=blue onclick="CheckNumber('8'); return false;" type=button value=" 8 " name=pindot8 style="width: 84; height:26"></TD>
<TD width="40%">
<INPUT class=blue onclick="CheckNumber('9'); return false;" type=button value=" 9 " name=pindot9 style="width: 84"></TD>
</TR>
<TR>
<TD width="14%">
<INPUT class=blue onclick="CheckNumber('4'); return false;" type=button value=" 4 " name=pindot4 style="width: 84"></TD>
<TD width="27%">
<INPUT class=blue onclick="CheckNumber('5'); return false;" type=button value=" 5 " name=pindot5 style="width: 84"></TD>
<TD width="40%">
<INPUT class=blue onclick="CheckNumber('6'); return false;" type=button value=" 6 " name=pindot6 style="width: 84"></TD>
</TR>
<TR>
<TD width="14%">
<INPUT class=blue onclick="CheckNumber('1'); return false;" type=button value=" 1 " name=pindot1 style="width: 84"></TD>
<TD width="27%">
<INPUT class=blue onclick="CheckNumber('2'); return false;" type=button value=" 2 " name=pindot2 style="width: 84"></TD>
<TD width="40%">
<INPUT class=blue onclick="CheckNumber('3'); return false;" type=button value=" 3 " name=pindot3 style="width: 84"></TD>
</TR>
<TR>
<TD width="14%" height="28">
<INPUT class=blue onclick="CheckNumber('0'); return false;" type=button value=" 0 " name=pindot0 style="width: 84"></TD>
<TD width="27%" height="28">
<INPUT class=red onclick="ClearKeypad(); return false;" type=reset value="Clear " name=C style="width: 84"></TD>
<TD width="40%" height="28">
<INPUT class=red onclick="Backspace(document.keypad.answer.value); return false;" type=button value=Backspace name=backspace style="width: 84; "></TD>
</TR>
<TR>
<TD width="56%" height="28" colspan="2">
<INPUT type=button value="Add to selected Recipient" name=btnAdd onclick="SendInfo()" style="width: 172; height: 26"></TD>
<TD width="40%" height="28">
<input type="button" value="Exit" name="btnExit" onClick="closeIt()" style="width: 84; height: 26"></TD>
</TR>
</TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></FORM>
<script>
if (isNS) document.captureEvents(Event.KEYPRESS);
document.onkeypress=onlyDigits;
</script>
</body>
</html>
|
|
|
|
|
hello! thanks for replying to my inquiry, the links that you gave me point out my problem. thanks lot!
|
|
|
|
|
A century ago, American farmers healthy breakfast and city-dwellers alike piled breakfast low calorie diet plan plates high with meat, potatoes, gravy, eggs, bread, and healthy breakfast ideas/strong> sometimes pastries. Not much has eggs breakfast recipe changed.A 21st century leisurely breakfast often healthy breakfast foods consists of sausage or bacon, eggs, fried potatoes, gravy, healthy breakfast cookie recipe and waffles or pancakes smothered healthy breakfast cereal choices in butter and syrup or topped with healthy breakfast recipes sweetened fruit compote low calorie breakfast recipes and whipped cream.This breakfast is high in saturated fat and low in vitamins and healthy breakfast diet for kids other important nutrients. People who engage average breakfast cereal choices in regular hard work similar to healthy breakfast choices our ancestors, like the Amish, might get away with diet breakfast recipes eating that diet, but the rest of healthy eating tips America is at healthy breakfast dishes for kids increased risk of obesity and chronic diseases, such as cancer and diabetes.Another typical breakfast hurriedly gobbled down healthy recipes for weight loss before children and adults rush out the door is breakfast recipes for kids a bowl of sugar-coated cereal. An alternate version is a pastry and a cup of Tips for Healthy Eating coffee. These foods are highly processed and Breakfast and Brunch Cookbook high in sugar. They fill the void and give you a healthy indian breakfast recipe quick flash of energy, but the effect is short lived. By healthy brekfast foods for girls mid-morning, you're tired wrap sandwich recipes and hungry. Not only are you Real Food for Healthy Kids consuming empty calories, but you're also increasing your risk of diabetes healthy breakfast menus kids and obesity.Eating regular meals — especially breakfast — every day is a good health habit. Breakfast kick-starts your metabolism, healthy snack foods kids provides fuel for your healthy snacks kids mind, and healthy breakfast fruits for kids cuts down on mid morning snacking. Most snack foods are breakfast and brunch cookbook morning high in calories, fat, sugar, easy breakfast casserole and salt, and low in nutrients. This is probably one reason why pictures of healthy food breakfast skippers tend to weigh more healthy food habits.
|
|
|
|
|
Fashionable boots are must have for fall and winter,UGG Boots Sale at our online store ,we offer free and fast shipping worldwide.The stylish boots such as:stylish Uggs Womens Boots/coolUggs Mens Boots//latestUgg Jimmy Choo/manyNew Ugg Boots/the hot sale Ugg Bailey ButtonUgg Classic Short/Ugg Classic Tall/Women's Mini Uggs/Ugg Bailey Button Triplet/UGG Bailey Button Krinkle/the modern and fashionable Ugg Leopard Prin/Ugg Romantic Flower/Ugg Classic Cardy/Ugg Classic Argyle Knit/Ugg Nightfall/Ugg Sundance II/Ugg Ultra Short/Ugg Grab Bags/Ugg Messenger Bags/Ugg Coquette/Ugg Dakota/Ugg Jimmy Choo Starlit/Ugg Jimmy Choo Sora/Ugg Jimmy Choo Kaia/Ugg Jimmy Choo Mandah Black/Ugg Sheepskin Cuff/Ugg Kids Bailey Button/Ugg Kids Classic Short/Ugg Men's Classic Short/All our boots are with genuine sheepskin and with excellent quality.Stylish Ugg Boots UK,hot saleUgg Bailey Button Boots,the latest Ugg Bailey Button Krinkle Boot,and the Ugg Classic Short Boot,Classic Tall Uggs,Ugg Classic Mini Boots,the new style 2010Bailey Button Triplet Uggs,the fashionable and modern style Uggs Leopard Print,Ugg Romantic Flower Boots,Ugg Classic Cardy Tall ,sweater-likeArgyle Knit Ugg Boots,Nightfall Ugg Boots,Sundance II Uggs,the durable and comfortableUltra Short Uggs,UGG Women's Ultra Tall,Ugg Grab Bag,and this nice bag to match with ugg boots,Ugg Messenger Bag,the comfort and fashion slippers as:Ugg Coquette Slipper,Ugg Dakota Slipper.The new coming bootsUgg Jimmy Choo Boots Starlit,Ugg Jimmy Choo Boots Sora,the boots the most women's favorite Ugg Jimmy Choo Boots Kaia,Ugg Jimmy Choo Womens Mandah Black,Ugg Boots Sheepskin Cuff,Uggs Kids Bailey Button,suitable for your kids,Uggs Kids Classic Short,and this style is for men:Uggs Men Classic Short Boots.All the boots are crafted with genuine sheepskin.
|
|
|
Microsoft will need to focus on other types of search: you can search to find his business buyers,(http://www.windows7product-key.net/), This second Kunduejiman the United States who have the search engine, Windows 7 Product Key,Google is a big difference too, Windows XP Product Key, Binnun Microsoft, including $ 2.6 billion last fiscal losses, Windows Vista Product Key,including online operations, is Microsoft's fault, Office 2010 Product Key,Facebook and Apple are good may be worth the end result of sales to make up for a better investment, Microsoft Product Key,Microsoft will join the search to improve, Office 2007 Product Key,such as mobile operators and commercial software is the mark but the company's other products, the investment value. Microsoft's search market share of 27% in the U.S. market, Windows 7 Key,one of Google Beroboda.
|
|
|
|
|
CAIRO (Reuters) - An Egyptian army officer and two security personnel Oakley Glass were killed during an Israeli raid on militants along the Egyptian Israeli border, an Egyptian army official told Reuters Thursday. The army officer was Oakley Glasses a border guard and the two men were from the Central Security Oakley Sunglasses Replica force, the official said. The three were killed as the Israeli military chased militants along the border of Egypt's Red Sea Replica Oakley Sunglasses resort of Taba in South Sinai and the Israeli city of Eilat. "An Israeli plane had been chasing militant infiltrators along the border between Taba and Eliat and one Egyptian Oakleys Central Security officer Oakley and two Central Security men were caught in the line of fire," the army official Oakley Cheap said. Three other security men were injured by gunfire and were being moved to a hospital in the city of el-Arish in North Sinai, a security source in South Sinai said. The Sinai forms a huge desert buffer zone between Egypt and Israel, which sealed an historic peace treaty in 1979 after fighting two wars in less than a decade.
Cheap Oakley Oakley Sunglasses Oakleys On Sale Oakley On Sale Oakley Sale Sale Oakley Oakley Online Oakley Sunglasses Online Cheap Oakley Sunglasses Oakley Sunglasses Cheap Oakley Sunglasses Sale Sale Oakley Sunglasses Discount Oakley Sunglasses Oakley Sunglasses Discount Oakley Outlet Oakley Outlet Store Oakley Sunglasses Outlet Oakley Sunglasses Wholesale Wholesale Oakley Sunglasses Fake Oakley Sunglasses Oakley Sunglasses Fake
Earlier Thursday gunmen killed seven people in southern Israel in Discount Oakley Glasses attacks along Egypt's porous border, prompting Israel to chase infiltrators along the border and launch an air strike in the Gaza Strip that killed Oakley Glasses Discount six Palestinians. Israel said the attackers infiltrated from the Hamas-run Gaza Strip via Egypt's Sinai desert, despite stepped-up Cheap Oakley Glasses efforts by Egyptian security forces in recent days to rein in Palestinian and Islamist radicals. The terms of the Camp David accords signed by Egypt and Israel in 1978 help explain why it is Oakley Glasses Cheap difficult to police Egypt's borders and maintain control in Sinai, where Oakley Glasses Sale well-armed Bedouin occasionally clash with security forces. The accords, agreed by former Egyptian President Anwar Sadat and Israeli Prime Minister Menachem Sale Oakley Glasses Begin, demilitarized central Sinai and allowed Egypt to deploy Oakley Glass Outlet only a small number of lightly armed border guards there and on the 266-km (165-mile) frontier. After Israel pulled out of Gaza in Oakley Glasses Outlet 2005, Egypt proposed raising the number http://www.oakley-cheap.com/ to 3,500 to help it secure its border with the Gaza Strip. Israel refused, citing security concerns.
|
|
|
NEW YORK (AP) — A frequent contributor to a jihadist website Christian Louboutin Shoes has threatened David Letterman, urging Muslim Christian Louboutin Sale followers to "cut the tongue" of the late-night host because of a joke the comic made on his CBS show. The Site Monitoring Service, a private intelligence organization that Discount Christian Louboutin watches online activity, said Wednesday that the threat was Christian Louboutin Outlet posted a day earlier on the shumukh al-Islam Louboutin Shoes forum, a popular Internet destination for radical Muslims. The contributor, who identified himself as Umar al-Basrawi, was reacting to what he said Letterman did after the U.S. Louboutin Outlet military announced on June 5 that a drone Christian Louboutin UK strike in Pakistan had killed al-Qaida leader Ilyas Christian Louboutin 2011 Kashmiri. Al-Basrawi wrote that Letterman had made reference to both Osama bin Laden and Kashmiri and said that Letterman had "put his hand on his neck and Christian Louboutin Shop demonstrated the way of slaughter." "Is there not among you a Sayyid Nosair al-Mairi ... to cut the tongue of this lowly Jew and shut it forever?" Al-Basrawi wrote, referring to El Sayyid Nosair, who was convicted of the 1990 killing of Jewish Defense League founder Meir Kahane. Letterman is not http://www.christianlouboutins-cheap.com/ Jewish.
Al-Basrawi, which is likely to be an alias, has made some 1,200 postings to the Muslim Cheap Christian Louboutin website, said Adam Raisman, an Christian Louboutin Discount analyst for the Site Monitoring Service. The private firm, part of the Site Intelligence Group, provides information to government and commercial clients on what jihadists are Christian Louboutin Cheap saying on the Internet and traditional Christian Louboutin Outlet Store media. Raisman said the Christian Louboutin online forum is often used by Christian Louboutins al-Qaida. Muslim extremist groups in the past few months have Louboutin Sale increased calls for people to take violent action against Louboutin certain targets in the West, he said. "The concern is that there is Christian Louboutin Online someone who will read it, agree with it and say, 'I want to be the Sayyid Nosair of 2011 Christian and kill David Letterman,'" Raisman said. The FBI is also Christian Louboutin Store looking into the threat, said Jim Margolin, spokesman for the bureau's New York Christian Louboutin Clearance office. "We take every potential threat seriously," he said.
|
|
|
|
|
Professional Coach Outlet Online service for you! Whether you like modern design Coach or classci Coach, your¡¯re in luck! Our Coach Outlet Store Online carries a large selection of your favorite. Here you will there are lots of series On Sale, including Coach Bags Outlet Series, Coach Shoes Series, Cheap Coach Purses Outlet Series, Coach Sunglasses Series. Each series also have many kinds of different styles can be choosen and purchased[/url].As one of the famous Coach Outlet Stores Online, we have won a good reputation in the market, and owing we have been engaged in Coach Bags Online Sale for some years, our Coach Bags have many loyal customers,the sales in the market is also good. [/url]To make customer satisfy is our aim, choose our Coach Factory Outlet, we will not let you down![/p]
|
|
|
|
|
|
This 22 message thread spans 2 pages: [1] 2 > > |
|
|
|
|
|