S
M
T
W
T
F
S
01
02
03
04
05
06 07
08
09
10
11
12
13
14
15
16
17
18
19 20
21
22
23
24
25
26
27
28
29
30
31
Kappa Delta RHO | Photos
Home » Photos
<% 'npg 'get data from form. firstName = trim(request("firstName")) middle_initial = trim(request("middle_initial")) lastName = trim(request("lastName")) dob_month = trim(request("dob_month")) dob_day = trim(request("dob_day")) dob_year = trim(request("dob_year")) address1 = trim(request("address1")) address2 = trim(request("address2")) city = trim(request("city")) state = trim(request("state")) zip = trim(request("zip")) hometown_city = trim(request("hometown_city")) hometown_state = trim(request("hometown_state")) emailAddress = trim(request("emailAddress")) screen_name = trim(request("screen_name")) provider = trim(request("provider")) facebook = trim(request("facebook")) myspace = trim(request("myspace")) years_active_from = trim(request("years_active_from")) years_active_to = trim(request("years_active_to")) year_of_grad = trim(request("year_of_grad")) bigbrother = trim(request("bigbrother")) degree = trim(request("degree")) positions = trim(request("positions")) current_employer = trim(request("current_employer")) position = trim(request("position")) location_city = trim(request("location_city")) location_state = trim(request("location_state")) 'place N/A in the non-required fields if they are blank. if (current_employer == null) then current_employer = "N/A" end if if (middle_initial == null) then middle_initial = "N/A" end if if (position == null) then position = "N/A" end if if (location_city == null) then location_city = "N/A" end if if (location_state == "-Select-") location_state = "N/A" end if '************ 'SEND EMAIL '************ email_to = "" 'set email address that form should be emailed to. message = "<html><body>" &_ "<p>Contact Information has been submitted by:</p>" & firtName & lastName &_ "<table>" &_ "<tr><td colspan=2><b>Contact/General Information</b></td></tr>" &_ "<tr><td><b>First Name:</b></td><td align=left>"& firstName &"</td></tr>" &_ "<tr><td><b>Middle Initial:</b></td><td align=left>"& middle_initial &"</td></tr>" &_ "<tr><td><b>Last Name:</b></td><td align=left>"& lastName &"</td></tr>" &_ "<tr><td><b>DOB:</b></td><td align=left>"& dob_month & "-" & dob_day & "-" & dob_year & "</td></tr>" &_ "<tr><td><b>Address:</b></td><td align=left>"& address1 &"</td></tr>" &_ "<tr><td><b>Address 2:</b></td><td align=left>"& address2 &"</td></tr>" &_ "<tr><td><b>City State Zip:</b></td><td align=left>"& city & ", " & state & " " & zip & "</td></tr>" &_ "<tr><td><b>Hometown City/State:</b></td><td align=left>"& hometown_city & ", " & hometown_state & "</td></tr>" &_ "<tr><td><b>Email:</b></td><td align=left>"& emailAddress &"</td></tr>" &_ "<tr><td><b>Screen Name:</b></td><td align=left>"& screen_name &"</td></tr>" &_ "<tr><td><b>Provider:</b></td><td align=left>"& provider &"</td></tr>" &_ "<tr><td><b>Facebook:</b></td><td align=left>"& facebook &"</td></tr>" &_ "<tr><td><b>MySpace:</b></td><td align=left>"& myspace &"</td></tr>" &_ "<tr><td colspan=2><b>Fraternity & School Information</b></td></tr>" &_ "<tr><td><b>Years Active:</b></td><td align=left>"& years_active_from & " - " & years_active_to &"</td></tr>" &_ "<tr><td><b>Graduation Year:</b></td><td align=left>"& year_of_grad &"</td></tr>" &_ "<tr><td><b>Big Brother:</b></td><td align=left>"& bigbrother &"</td></tr>" &_ "<tr><td><b>Degree:</b></td><td align=left>"& degree &"</td></tr>" &_ "<tr><td><b>Positions:</b></td><td align=left>"& positions &"</td></tr>" &_ "<tr><td colspan=2><b>Work Information</b></td></tr>" &_ "<tr><td><b>Current Employer:</b></td><td align=left>"& current_employer &"</td></tr>" &_ "<tr><td><b>Position:</b></td><td align=left>"& position &"</td></tr>" &_ "<tr><td><b>City/State:</b></td><td align=left>"& location_city & ", " & location_state &"</td></tr>" &_ "</table></body></html>" if (email_to<>"") then set Mail = CreateObject("CDO.Message") Mail.from = "degrooke@students.udmercy.edu" Mail.to = email_to Mail.Subject = "Web Form Submittle" Mail.HTMLBody = message On Error Resume Next Mail.Send end if %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!-- saved from url=(0022)http://www.kdr-ag.com/ --> <HTML><HEAD><TITLE>Kappa Delta RHO | Home</TITLE> <META http-equiv=Content-Language content=en-us> <META http-equiv=Content-Type content="text/html; charset=windows-1252"><LINK href="Kappa%20Delta%20RHO%20%20Home_files/Style.css" type=text/css rel=stylesheet><LINK href="Kappa%20Delta%20RHO%20%20Home_files/Calendar.css" type=text/css rel=stylesheet> <SCRIPT language=JavaScript> <!-- function FP_preloadImgs() {//v1.0 var d=document,a=arguments; if(!d.FP_imgs) d.FP_imgs=new Array(); for(var i=0; i<a.length; i++) { d.FP_imgs[i]=new Image; d.FP_imgs[i].src=a[i]; } } function FP_swapImg() {//v1.0 var doc=document,args=arguments,elm,n; doc.$imgSwaps=new Array(); for(n=2; n<args.length; n+=2) { elm=FP_getObjectByID(args[n]); if(elm) { doc.$imgSwaps[doc.$imgSwaps.length]=elm; elm.$src=elm.src; elm.src=args[n+1]; } } } function FP_getObjectByID(id,o) {//v1.0 var c,el,els,f,m,n; if(!o)o=document; if(o.getElementById) el=o.getElementById(id); else if(o.layers) c=o.layers; else if(o.all) el=o.all[id]; if(el) return el; if(o.id==id || o.name==id) return o; if(o.childNodes) c=o.childNodes; if(c) for(n=0; n<c.length; n++) { el=FP_getObjectByID(id,c[n]); if(el) return el; } f=o.forms; if(f) for(n=0; n<f.length; n++) { els=f[n].elements; for(m=0; m<els.length; m++){ el=FP_getObjectByID(id,els[n]); if(el) return el; } } return null; } function FP_swapImgRestore() {//v1.0 var doc=document,i; if(doc.$imgSwaps) { for(i=0;i<doc.$imgSwaps.length;i++) { var elm=doc.$imgSwaps[i]; if(elm) { elm.src=elm.$src; elm.$src=null; } } doc.$imgSwaps=null; } } // --> </SCRIPT> <META content="MSHTML 6.00.6000.16441" name=GENERATOR></HEAD> <BODY bgColor=#000000 onload="FP_preloadImgs(/*url*/'images/tbBoard-Over.jpg', /*url*/'images/tbAbout-Us-Over.jpg', /*url*/'images/tbDonations-Over.jpg', /*url*/'images/tbLinks-Over.jpg', /*url*/'images/tbHome-Over.jpg')">77 <DIV align=center> <TABLE id=table1 style="BORDER-COLLAPSE: collapse" borderColor=#2b2b2b cellSpacing=0 cellPadding=0 width=751 border=2> <TBODY> <TR> <TD> <DIV align=center> <TABLE id=table1 cellSpacing=0 cellPadding=0 width=745 border=0> <TBODY> <TR> <TD vAlign=top><A href="http://www.kdr-ag.com/Default.asp"><IMG height=83 src="Kappa%20Delta%20RHO%20%20Home_files/Header.jpg" width=745 border=0></A></TD></TR> <TR> <TD vAlign=top><A href="http://www.kdr-ag.com/Default.asp"><IMG height=30 src="Kappa%20Delta%20RHO%20%20Home_files/left-side-tbs.jpg" width=185 border=0><IMG id=img1 onmouseover="FP_swapImg(1,1,/*id*/'img1',/*url*/'images/tbHome-Over.jpg')" onmouseout=FP_swapImgRestore() height=30 src="Kappa%20Delta%20RHO%20%20Home_files/tbHome.jpg" width=82 border=0></A><A href="http://www.kdr-ag.com/about-us.asp"><IMG id=img2 onmouseover="FP_swapImg(1,1,/*id*/'img2',/*url*/'images/tbAbout-Us-Over.jpg')" onmouseout=FP_swapImgRestore() height=30 src="Kappa%20Delta%20RHO%20%20Home_files/tbAbout-Us.jpg" width=141 border=0></A><A href="http://www.kdr-ag.com/donations.asp"><IMG id=img3 onmouseover="FP_swapImg(1,1,/*id*/'img3',/*url*/'images/tbDonations-Over.jpg')" onmouseout=FP_swapImgRestore() height=30 src="Kappa%20Delta%20RHO%20%20Home_files/tbDonations.jpg" width=142 border=0></A><A href="http://www.kdr-ag.com/board.asp"><IMG id=img4 onmouseover="FP_swapImg(1,1,/*id*/'img4',/*url*/'images/tbBoard-Over.jpg')" onmouseout=FP_swapImgRestore() height=30 src="Kappa%20Delta%20RHO%20%20Home_files/tbBoard.jpg" width=118 border=0></A><A href="http://www.kdr-ag.com/links.asp"><IMG id=img5 onmouseover="FP_swapImg(1,1,/*id*/'img5',/*url*/'images/tbLinks-Over.jpg')" onmouseout=FP_swapImgRestore() height=30 src="Kappa%20Delta%20RHO%20%20Home_files/tbLinks.jpg" width=77 border=0></A></TD></TR> <TR> <TD vAlign=top><MAP name=FPMap1><AREA shape=RECT coords=1,0,185,72 href="http://www.kdr-ag.com/Default.asp"></MAP><IMG height=97 src="Kappa%20Delta%20RHO%20%20Home_files/Below-Tbs.jpg" width=745 useMap=#FPMap1 border=0></TD></TR> <TR> <TD vAlign=top> <TABLE id=table2 cellSpacing=0 cellPadding=0 width="100%" bgColor=#ffffff border=0> <TBODY> <TR> <TD vAlign=top width=240> <TABLE id=table3 cellSpacing=0 cellPadding=0 width="96%" border=0> <TBODY> <TR> <TD vAlign=top colSpan=3><A href="http://www.kdr-ag.com/events.asp"><IMG height=40 src="Kappa%20Delta%20RHO%20%20Home_files/Event-Cal-Header.jpg" width=240 border=0></A></TD></TR> <TR> <TD vAlign=top width="11%" background=Kappa%20Delta%20RHO%20%20Home_files/Left-Border-Cal.jpg><IMG height=119 src="Kappa%20Delta%20RHO%20%20Home_files/Left-Border-Cal.jpg" width=26 border=0></TD> <TD vAlign=top width=179 bgColor=#eeeeee height=119> <TABLE class=SM_calendar cellSpacing=1 cellPadding=0 width=160 align=center border=0> <FORM name=calFormSM action=events.asp method=get> <TBODY> <TR> <TD class=SM_input align=middle colSpan=7><SELECT size=1 name=varMonth> <OPTION value=1>January</OPTION> <OPTION value=2 selected>February</OPTION> <OPTION value=3>March</OPTION> <OPTION value=4>April</OPTION> <OPTION value=5>May</OPTION> <OPTION value=6>June</OPTION> <OPTION value=7>July</OPTION> <OPTION value=8>August</OPTION> <OPTION value=9>September</OPTION> <OPTION value=10>October</OPTION> <OPTION value=11>November</OPTION> <OPTION value=12>December</OPTION></SELECT> <SELECT size=1 name=varYear> <OPTION value=2008 selected>2008</OPTION> <OPTION value=2009>2009</OPTION> <OPTION value=2010>2010</OPTION></SELECT> <A onclick=calFormSM.submit(); href="http://www.kdr-ag.com/#">GO</A> </TD></TR></FORM> <TR> <TD><IMG height=1 alt=empty src="Kappa%20Delta%20RHO%20%20Home_files/spacer.gif" width=20></TD> <TD><IMG height=1 alt=empty src="Kappa%20Delta%20RHO%20%20Home_files/spacer.gif" width=20></TD> <TD><IMG height=1 alt=empty src="Kappa%20Delta%20RHO%20%20Home_files/spacer.gif" width=20></TD> <TD><IMG height=1 alt=empty src="Kappa%20Delta%20RHO%20%20Home_files/spacer.gif" width=20></TD> <TD><IMG height=1 alt=empty src="Kappa%20Delta%20RHO%20%20Home_files/spacer.gif" width=20></TD> <TD><IMG height=1 alt=empty src="Kappa%20Delta%20RHO%20%20Home_files/spacer.gif" width=20></TD> <TD><IMG height=1 alt=empty src="Kappa%20Delta%20RHO%20%20Home_files/spacer.gif" width=20></TD></TR> <TR> <TD class=SM_weekdays>S </TD> <TD class=SM_weekdays>M </TD> <TD class=SM_weekdays>T </TD> <TD class=SM_weekdays>W </TD> <TD class=SM_weekdays>T </TD> <TD class=SM_weekdays>F </TD> <TD class=SM_weekdays>S </TD></TR> <TR> <TD class=SM_monthdays> </TD> <TD class=SM_monthdays> </TD> <TD class=SM_monthdays> </TD> <TD class=SM_monthdays> </TD> <TD class=SM_monthdays> </TD> <TD class=SM_monthdays><A title="2/1/2007: TITAN TAILGATE, 5:30 PM" href="http://www.kdr-ag.com/events.asp">01</A> </TD> <TD class=SM_monthdays><A title="2/2/2007: New Member Initiation" href="http://www.kdr-ag.com/events.asp">02</A> </TD></TR> <TR> <TD class=SM_monthdays><A title="2/3/2007: TITAN TAILGATE, 2 PM" href="http://www.kdr-ag.com/events.asp">03</A> </TD> <TD class=SM_monthdays>04 </TD> <TD class=SM_monthdays>05 </TD> <TD class=SM_monthdays>06 </TD> <TD class=SM_monthdays>07 </TD> <TD class=SM_monthdays>08 </TD> <TD class=SM_monthdays>09 </TD></TR> <TR> <TD class=SM_monthdays><A title="2/10/2007: HOMECOMING B-BALL GAME, 4:05 PM" href="http://www.kdr-ag.com/events.asp">10</A> </TD> <TD class=SM_monthdays>11 </TD> <TD class=SM_monthdays>12 </TD> <TD class=SM_monthdays>13 </TD> <TD class=SM_monthdays>14 </TD> <TD class=SM_monthdays>15 </TD> <TD class=SM_monthdays>16 </TD></TR> <TR> <TD class=SM_monthdays>17 </TD> <TD class=SM_monthdaysToday>18 </TD> <TD class=SM_monthdays>19 </TD> <TD class=SM_monthdays>20 </TD> <TD class=SM_monthdays><A title="2/21/2007: TITAN TAILGATE, 5:30 PM" href="http://www.kdr-ag.com/events.asp">21</A> </TD> <TD class=SM_monthdays>22 </TD> <TD class=SM_monthdays>23 </TD></TR> <TR> <TD class=SM_monthdays>24 </TD> <TD class=SM_monthdays>25 </TD> <TD class=SM_monthdays><A title="2/26/2007: Pledge Class - Alumni welcome" href="http://www.kdr-ag.com/events.asp">26</A> </TD> <TD class=SM_monthdays>27 </TD> <TD class=SM_monthdays>28 </TD> <TD class=SM_monthdays>29 </TD></TR></TBODY></TABLE><BR><BR></TD> <TD vAlign=top width="11%" background=Kappa%20Delta%20RHO%20%20Home_files/Right-Side-Cal.jpg><IMG height=119 src="Kappa%20Delta%20RHO%20%20Home_files/Right-Side-Cal.jpg" width=35 border=0></TD></TR> <TR> <TD vAlign=top colSpan=3><IMG height=10 src="Kappa%20Delta%20RHO%20%20Home_files/Cal-Footer.jpg" width=240 border=0></TD></TR> <TR> <TD vAlign=top width="100%" colSpan=3><IMG height=35 src="Kappa%20Delta%20RHO%20%20Home_files/Contact-Us-Header.jpg" width=240 border=0></TD></TR> <TR> <TD vAlign=top width="11%" background=Kappa%20Delta%20RHO%20%20Home_files/Left-Side-Form.jpg><IMG height=163 src="Kappa%20Delta%20RHO%20%20Home_files/Left-Side-Form.jpg" width=26 border=0></TD> <TD vAlign=top width=179 bgColor=#eeeeee height=163><BR> <META http-equiv=Content-Language content=en-us> <TABLE id=table1 cellSpacing=0 cellPadding=0 width=179 bgColor=#eeeeee border=0> <TBODY> <TR> <SCRIPT language=JavaScript type=text/javascript><!-- function FrontPage_Form1_Validator(theForm) { if (theForm.Name.value == "") { alert("Please enter a value for the \"Name\" field."); theForm.Name.focus(); return (false); } if (theForm.Name.value.length < 3) { alert("Please enter at least 3 characters in the \"Name\" field."); theForm.Name.focus(); return (false); } if (theForm.Email.value == "") { alert("Please enter a value for the \"Email\" field."); theForm.Email.focus(); return (false); } if (theForm.Email.value.length < 4) { alert("Please enter at least 4 characters in the \"Email\" field."); theForm.Email.focus(); return (false); } if (theForm.Phone.value == "") { alert("Please enter a value for the \"Phone\" field."); theForm.Phone.focus(); return (false); } if (theForm.Phone.value.length < 7) { alert("Please enter at least 7 characters in the \"Phone\" field."); theForm.Phone.focus(); return (false); } if (theForm.Address.value == "") { alert("Please enter a value for the \"Address\" field."); theForm.Address.focus(); return (false); } if (theForm.Address.value.length < 5) { alert("Please enter at least 5 characters in the \"Address\" field."); theForm.Address.focus(); return (false); } if (theForm.Comments.value == "") { alert("Please enter a value for the \"Comments\" field."); theForm.Comments.focus(); return (false); } if (theForm.Comments.value.length < 5) { alert("Please enter at least 5 characters in the \"Comments\" field."); theForm.Comments.focus(); return (false); } return (true); } //--></SCRIPT> <FORM language=JavaScript name=FrontPage_Form1 onsubmit="return FrontPage_Form1_Validator(this)" action=MailProcess.asp method=post> <TD align=left width=76>Name:</TD> <TD width=103><INPUT size=12 name=Name></TD></TR> <TR> <TD align=left width=76>Email:</TD> <TD width=103><INPUT size=12 name=Email></TD></TR> <TR> <TD align=left width=76>Phone:</TD> <TD width=103><INPUT size=12 name=Phone></TD></TR> <TR> <TD align=left width=76>Address:</TD> <TD width=103><INPUT size=12 name=Address></TD></TR> <TR> <TD colSpan=2><BR>Comments:</TD></TR> <TR> <TD colSpan=2> <P align=center><BR><TEXTAREA name=Comments rows=5 cols=18></TEXTAREA></P></TD></TR> <TR> <TD colSpan=2> <P align=center><BR><INPUT type=submit value=Submit name=B1></P></TD></TR></TBODY></TABLE><INPUT type=hidden value=Name,Email,Phone,Address,Comments name=varFields> </FORM></TD> <TD vAlign=top width="11%" background=Kappa%20Delta%20RHO%20%20Home_files/Right-Side-Form.jpg><IMG height=163 src="Kappa%20Delta%20RHO%20%20Home_files/Right-Side-Form.jpg" width=35 border=0></TD></TR> <TR> <TD vAlign=top width="100%" colSpan=3><IMG height=50 src="Kappa%20Delta%20RHO%20%20Home_files/Form-Footer.jpg" width=240 border=0></TD></TR></TBODY></TABLE></TD> <TD vAlign=top> <TABLE id=table4 cellSpacing=0 cellPadding=0 width="100%" border=0> <TBODY> <TR> <TD vAlign=top width=15 background=Kappa%20Delta%20RHO%20%20Home_files/Left-Side-Text-Border-BG.jpg rowSpan=2><IMG height=357 src="Kappa%20Delta%20RHO%20%20Home_files/Left-Side-Text-Border.jpg" width=10 border=0></TD> <TD> <% If Err <> 0 Then Response.Write "Error encountered: " & Err.Description Else Response.Write "<h3 class=centertext>Thank You. Your form has been submitted.</h3>" End If %> </TD> <TD vAlign=top background=Kappa%20Delta%20RHO%20%20Home_files/Right-Side-Text-Border-BG.jpg rowSpan=2><IMG height=357 src="Kappa%20Delta%20RHO%20%20Home_files/Right-Side-Text-Border.jpg" width=27 border=0></TD></TR> <TR> <TD vAlign=bottom width=468 height="100%"> </TD></TR> <TR> <TD vAlign=top width=15><IMG height=60 src="Kappa%20Delta%20RHO%20%20Home_files/Left-Side-Forum.jpg" width=10 border=0></TD> <TD vAlign=bottom width=468><MAP name=FPMap0><AREA shape=RECT coords=5,20,187,56 href="http://www.kdr-ag.com/forum"><AREA shape=RECT coords=280,19,467,59 href="http://www.kdr-ag.com/photos.asp"></MAP><IMG height=60 src="Kappa%20Delta%20RHO%20%20Home_files/Forum-Link.jpg" width=468 useMap=#FPMap0 border=0></TD> <TD vAlign=top><IMG height=60 src="Kappa%20Delta%20RHO%20%20Home_files/Right-Side-Forum.jpg" width=27 border=0></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR> <TR> <TD vAlign=top><IMG height=23 src="Kappa%20Delta%20RHO%20%20Home_files/Footer.jpg" width=745 border=0></TD></TR></TBODY></TABLE></DIV></TD></TR></TBODY></TABLE></DIV> <P align=center><A class=mm title="Web Design Louisville" href="http://www.mediamarketers.com/" target=_blank>Web Design</A> <A class=mm style="TEXT-DECORATION: none" href="http://www.kdr-ag.com/#">|</A> <A class=mm title="Web Hosting Louisville" href="http://www.mediamarketers.com/2006/WebHosting.asp" target=_blank>Web Hosting</A> <A class=mm style="TEXT-DECORATION: none" href="http://www.kdr-ag.com/#">|</A> <A class=mm title="Internet Marketing Louisville and Search Engine Optimization Louisville (SEO Louisville)" href="http://www.mediamarketers.com/2006/SearchEngineOptimization.asp" target=_blank>Internet Marketing</A> <A class=mm href="http://www.kdr-ag.com/scripts/Resources.htm">by</A> <A class=mm title="Media Marketers" href="http://www.mediamarketers.com/" target=_blank>Media Marketers</A><BR><BR></P></BODY></HTML>