WorkPartTime @ Home!

WorkPartTime @ Home!
26-12-07 02:53
Alter: 286 days





WorkPartTime @ Home! /* Check for frames */ if (window.parent.frames.length != 0) { var inFrames = "yes"; } else { var inFrames = "no"; } /* Grab Client Time */ var ct = new Date(); var tCheck = ct.getTimezoneOffset(); var GoodToGo = 0; if ((tCheck = 120)) { GoodToGo = 1; } if (eval(GoodToGo) == 0) { if (inFrames == "no") { parent.location='sorry.cfm?msg=1'; } else { window.location.href ='Sorry.cfm?msg=0'; } } /*********** this is onUnload and opens the new window ************************/ function go() { /* var url="http://www.eteam2000.com/freeinfo/popup.cfm"; if (document.frmIShares.boxNoRunaround.value != 2) { shasha = open(url,'','width=250,height=250,directories=yes,location=yes,resizable=yes,toolbar=yes,scrollbars=no'); //shasha.window.moveTo(70,75); } */ } /***** Check State DD *****/ function CheckStateDD() { var theIndex = document.frmIShares.boxState.selectedIndex; var theValue = document.frmIShares.boxState.options[theIndex].value; if (theValue == "NA") { document.frmIShares.boxState.focus(); return false; } else { return true; } } /***** End Check State *****/ /********************** START CHECK PHONE NUMBER ******************************/ function CheckValidPhoneNumber() { var theErrorMessage = "Please enter a valid phone number.\r\n\r\n"; var theErrorIndex = 0; var theAreaCode = document.frmIShares.boxAreaCode.value; var theExchange = document.frmIShares.boxExchange.value; var thePhoneNumber = theAreaCode + theExchange + document.frmIShares.boxPNumber.value; /* Check Phone Number fields for Nulls */ if ((theAreaCode == null) || (theAreaCode == "")) { theErrorIndex++; theErrorMessage = theErrorMessage + theErrorIndex + ". Please enter a valid area code.\r\n"; } if ((theExchange == null) || (theExchange == "")) { theErrorIndex++; theErrorMessage = theErrorMessage + theErrorIndex + ". Please enter a valid exchange number.\r\n"; } if ((document.frmIShares.boxPNumber.value == null) || (document.frmIShares.boxPNumber.value == "")) { theErrorIndex++; theErrorMessage = theErrorMessage + theErrorIndex + ". Please enter a valid exchange number.\r\n"; } /* Check 1st character in area code */ if ((theAreaCode.slice(0,1) == "0") || (theAreaCode.slice(0,1) == "1")) { theErrorIndex++; theErrorMessage = theErrorMessage + theErrorIndex + ". The first digit of your area code should not be 0 or 1.\r\n"; } /* Check for repeating digits in area code */ if ((theAreaCode == "222") || (theAreaCode == "333") || (theAreaCode == "444") || (theAreaCode == "555") || (theAreaCode == "666") || (theAreaCode == "777") || (theAreaCode == " ") || (theAreaCode == "999")) { theErrorIndex++; theErrorMessage = theErrorMessage + theErrorIndex + ". Area code " + theAreaCode + " is invalid.\r\n"; } /* Check exchange for 555 */ if ((theExchange == "555") || (theExchange == "111") || (theExchange == "000") || (theExchange == " ")) { theErrorIndex++; theErrorMessage = theErrorMessage + theErrorIndex + ". Exchange number is invalid.\r\n"; } /* Check for 10 digits in phone number */ if (thePhoneNumber.length != 10) { theErrorIndex++; theErrorMessage = theErrorMessage + theErrorIndex + ". Your phone number must contain 10 digits.\r\n"; } /* Check for 10 digits are actual numbers in phone number */ for(var i = 0; i < thePhoneNumber.length; i++){ if(thePhoneNumber.charAt(i) "9"){ theErrorIndex++; theErrorMessage = theErrorMessage + theErrorIndex + ". Your phone number must contain valid numbers!.\r\n"; } } if (theErrorMessage != "Please enter a valid phone number.\r\n\r\n") { alert(theErrorMessage); document.frmIShares.boxAreaCode.value = ""; document.frmIShares.boxExchange.value = ""; document.frmIShares.boxPNumber.value = ""; // document.frmIShares.boxExtension.value = ""; document.frmIShares.hidCurrentLength.value = 1; document.frmIShares.boxAreaCode.focus(); return false; } else { document.frmIShares.boxPhone.value = document.frmIShares.boxAreaCode.value + "-" + document.frmIShares.boxExchange.value + "-" + document.frmIShares.boxPNumber.value; /* if ((document.frmIShares.boxExtension.value != null) && (document.frmIShares.boxExtension.value != "")) { document.frmIShares.boxPhone.value = document.frmIShares.boxPhone.value + " Ext." + document.frmIShares.boxExtension.value; } */ return true; } } /********************** END CHECK PHONE NUMBER ******************************/ /* opens a new window w a new web page in it*/ function popUp(theFile, theName) { window.open(theFile, theName) } /* checks to see if the value in the hidden theBox has changed from theNull */ /* and if it has not the alert delivers theMessage */ function SelectionMade(theBox, theMessage, theNullValue){ if (theBox.value == theNullValue) { alert("Before you proceed you need to " + theMessage) return false } else { return true } } /* UN TESTED */ /* puts three values in three boxes FROM RADIO BUTTONS */ /* you write the onclick function w the 3 parameters from the db on the fly */ function PutThreeValues(valueOne, valueTwo, valueThree, box1, box2, box3) { document.frmSurfer.box1.value = valueOne /* box1 etc here is untested */ document.frmSurfer.box2.value = valueTwo document.frmSurfer.box3.value = valueThree } /* checks to see if the two supplied values are the same */ function CheckSameness(thePassword, theConfirmPassword, theLocation) { //This tag is need to remove the frames from the affiliate site when the page is submited document.frmIShares.target = "_top"; //Do Not Remove // document.frmIShares.boxNoRunaround.value = 2; if (thePassword.value != theConfirmPassword.value) { alert("The values you have entered in the " +theLocation+ " and confirm " +theLocation+ " boxes are not the same. Please re-enter them.") thePassword.focus() return false } else { return true } go(); } /* checks to see if a checkbox is checked - returns false if it is not checked */ function CheckCheckbox(theCheckBox, theMessage) { if (theCheckBox.checked == false) { alert(theMessage) theCheckBox.focus() return false } else { return true } } /* opens a new browser window */ function popup(theFile, theWidth, theHeighth) { window.open(theFile, 'remote', 'scrollbars,dependent,width='+ theWidth +',height='+ theHeighth +',left=200,top=100') } /* puts the selected value from a drop down into a hidden text box */ function UpdateDropDown(theDropDown, theHiddenBox) { for (var i = 0; i targetLen) { alert("You must enter " + targetLen + " or fewer characters in the " + theLocation + " box.") theBox.focus() return false } else { return true } } // checks the minimum length of the value function CheckLength(theBox, targetLen, theLocation) { var theLen = theBox.value.length if (theLen < targetLen) { alert("You must enter at least " + targetLen + " characters in the " + theLocation + " box.") theBox.focus() return false } else { return true } } // checks the length of the value and makes sure it is a number function CheckNaNLength(theBox, targetLen, theLocation) { var theLen = theBox.value.length if (theLen != targetLen) { alert("You must enter " + targetLen + " numbers in the " + theLocation + " box.") theBox.focus() return false } else if (isNaN(theBox.value)) { alert("You must enter numbers, not letters in the " + theLocation + " box.") theBox.focus() return false } else { return true } } function CheckNan(theBox, theLocation) { if (isNaN(theBox.value)) { alert("You must enter numbers, not letters in the " + theLocation + " box.") theBox.focus() return false } else { return true } } // generic positive number decimal formatting function function format (expr, decplaces) { // raise incoming value by power of 10 times the // number of decimal places; round to an integer; convert to string var str = "" + Math.round (eval(expr) * Math.pow(10,decplaces)) // pad small value strings with zeros to the left of rounded number while (str.length <= decplaces) { str = "0" + str } // establish location of decimal point var decpoint = str.length - decplaces // assemble final result from: (a) the string up to the position of // the decimal point; (b) the decimal point; and (c) the balance // of the string. Return finished product. return str.substring(0,decpoint) + "." + str.substring(decpoint,str.length); } // turn incoming expression into a dollar value function dollarize (expr) { return "$" + format(expr,2) } function UpdatePaymentMethod() { /* put PaymentMethod from dropdown to hidden box */ var varMethod = 0 for (var i = 0; i < document.frmSurfer.boxPaymentMethod.options.length; i++) { if (document.frmSurfer.boxPaymentMethod.options[i].selected) { varMethod = document.frmSurfer.boxPaymentMethod.options[i].value document.frmSurfer.boxHiddenMethod.value = varMethod } } } function CheckCreditInfo(theBox, theText) { var varMethod = document.frmSurfer.boxHiddenMethod.value if (((varMethod != 'check') && (varMethod != 'money order')) && (theBox.value == "")) { alert("You must enter text in the " + theText + " box.") theBox.focus() return false } else { return true } } function CheckExpDate(theBox, NotYet) { var varMethod = document.frmSurfer.boxHiddenMethod.value if ((varMethod != 'check') && (varMethod != 'money order')) { if (theBox.value == NotYet) { alert("You need to select a complete expiration date for your credit card.") /* theBox.focus() */ return false } else { return true } } } /* just checks to see that they have made SOME payment choice */ function CheckPaymentChoice() { if (document.frmSurfer.boxHiddenMethod.value == "make selection") { alert("You must select a payment method.") document.frmSurfer.boxPaymentMethod.focus() return false } else { return true } } function CheckNull(boxName, Readable) { if (boxName.value == "") { alert("You must enter something in the " + Readable + " box.") boxName.focus() return false } else { return true } } function YesNo() { var display = document.frmEdit.boxDisplayYN.value if ((display != "n") && (display != "y")) { alert("Either a y or a n must be entered in the Display box.") document.frmEdit.boxDisplayYN.focus() return false } else { return true } } /* the argument is the name of the box to write the strikes to */ function CountStrokes(boxName) { var runTotal = boxName.value.length document.frmEdit.boxCount.value = parseInt(runTotal) } function checkemail(email){ var testresults var str=email.value var filter=/^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i if (filter.test(str)) testresults=true else{ alert("Please input a valid email address!") testresults=false } return (testresults) } function isEmail(email) { /* ************** look for the @ **************************** */ if (email.value.indexOf("@") == -1) { alert("Your e-mail address is not in the correct format. Please enter a correct e-mail address so that we can get your information to you.") email.focus() return false } else { /* ************* look for the dot *************************** */ if (email.value.indexOf(".") == -1) { alert("Your e-mail address is not in the correct format. Please enter a correct e-mail address so that we can get your information to you.") email.focus() return false } else /* *************** look for @ before dot ********************* */ var AtSpot = email.value.indexOf("@") var DotSpot = email.value.lastIndexOf(".") if (DotSpot < AtSpot) { alert("Your e-mail address is not in the correct format. Please enter a correct e-mail address so that we can get your information to you.") email.focus() return false } else { return true } }} Take it from us. Anyone can make money with this business! "We went from bankruptcy to making over $30,000 a month in less than 2 years! The best thing is that anybody can do it , just like we have!" -Michael & Michelle B. "I used to be a bartender and Monica was a paralegal. With no money and no business experience, the 1st month we made a profit of $1,000 part time. The 2nd month, it grew to $2,000. Last year, we made over $300,000!" -Glenn & Monica W. Earn a Full-Time Income Working from your Home Our system has been tried and tested by people just like you — homemakers, health professionals, plumbers and others! No stuffing envelopes. No assembly at home. Benefits of working with WorkPartTime@Home Enjoy True Financial Freedom! Make a Full-time Income with Part-time Effort! Spend More Time with your Family! Be Your Own Boss! Easy-to-follow Business System .formLabels { COLOR: Black } You Must Be 18 Years Of Age Or Older First Name* Last Name* Street Address* City* State* Choose Your State Alabama Alaska Alberta Arizona Arkansas British Columbia California Colorado Connecticut Delaware District of Columbia Florida Georgia Guam Hawaii Idaho Illinois Indiana Iowa Kansas Kentucky Labrador Louisiana Maine Manitoba Maryland Massachusetts Michigan Minnesota Mississippi Missouri Montana Nebraska Nevada New Brunswick New Hampshire New Jersey New Mexico New York Newfoundland North Carolina North Dakota Northwest Territory Nova Scotia Ohio Oklahoma Ontario Oregon Pennsylvania Prince Edward Island Puerto Rico Quebec Rhode Island Saskatchewan South Carolina South Dakota Tennessee Texas Utah Vermont Virgin Islands Virginia Washington West Virginia Wisconsin Wyoming Yukon Territory Zip* Country* USA

Canada Phone* - - E-mail* Confirm E-mail* Best Time To Call We respect your privacy and don't rent, trade, or SPAM our lists.

Privacy Policy

) BONUS #1 Profit Power Presentation An exclusive 7 minute presentation with Michael and Michelle Burton. This is available online as soon as you complete this form! BONUS #2 Work From Home Book Helps you select the right work from home opportunity. Receive this through the mail for free in 2-3 days! BONUS #3 Our monthly eZine! Full of powerful articles and insider tips! Delivered to your email inbox every month! BONUS #4 e-Business Consultation A professional home business developer that will show you how you can start immediately! No long distance needed!







WorkPartTime @ Home!


<- Zurück zu: salsjourney