-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.htm
More file actions
248 lines (213 loc) · 10.4 KB
/
index.htm
File metadata and controls
248 lines (213 loc) · 10.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE>:::::uthcode:::::Imagination Unlimited</TITLE>
<META http-equiv=Content-Type content="text/html; charset=windows-1252">
<SCRIPT language=javascript>
</SCRIPT>
<META content="Microsoft FrontPage 4.0" name=GENERATOR><meta name="Microsoft Border" content="tlb, default">
</HEAD>
<BODY onload=startBanner()>
<!-- following code added by server. PLEASE REMOVE -->
<!-- preceding code added by server. PLEASE REMOVE --><!--msnavigation--><table border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td>
<div align="center">
<table border="0" width="663" height="82">
<tr>
<td width="269" height="82" valign="top" rowspan="2">
<p align="left"><span style="position: absolute; left: 23; top: 21"><img border="0" src="_borders/uthcodebanner.gif" width="269" height="99"></span></td>
<td width="378" height="42" valign="top">
<p align="center"><nobr>[ Home ]</nobr> <nobr>[ <a href="fedbak.htm">Ideas</a> ]</nobr> <nobr>[ <a href="it.htm">Quest</a> ]</nobr> <nobr>[ <a href="download.htm">Wall Papers</a> ]</nobr> <nobr>[ <a href="faq.html">Technical</a> ]</nobr> <nobr>[ <a href="jobsites.html">Job Sites</a> ]</nobr> <nobr>[ <a href="webmasters.html">Webmasters</a> ]</nobr></td>
</tr>
<tr>
<td width="378" height="28" valign="middle">
<p align="center"><font face="Arial Narrow,Helvetica,Arial" size="2"><select language="JavaScript" onchange="window.location.href = this.options[this.selectedIndex].value" size="1" name="Select">
<option selected>----- Select Your Semester -----</option>
<option value="first.html">First program</option>
<option value="firstyr.html">First Year</option>
<option value="third.html">Third Semester</option>
<option value="fourth.html">Fourth Semester</option>
<option value="fifth.html">Fifth Semester</option>
<option value="sixth.html">Sixth Semester</option>
<option value="seven.html">Seventh Semester</option>
<option value="eight.html">Eight Semester</option>
<option value="projects.html">Projects</option>
<option value="ccode.html">C codes</option>
<option value="script.html">Web Designing Code</option>
<option value="jobsites.html">Jobs and Placement</option>
<option value="faq.html">Frequently Asked Quesrions</option>
<option value="webmasters.html">Webmasters</option>
</select></font></td>
</tr>
</table>
</div>
<p align="center"><font size="6" color="#000000" face="Monotype Corsiva"><span style="background-color: #FFFFFF">Imagination Unlimited</span></font></p>
</td></tr><!--msnavigation--></table><!--msnavigation--><table border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td valign="top" width="1%">
<nobr>Home</nobr><br><nobr><a href="aptitude.html">Aptitude</a></nobr><br><nobr><a href="search.htm">Fast Search</a></nobr><br><nobr><a href="new_page_1.htm">Programming B E</a></nobr><br><nobr><a href="ccode.html">See++</a></nobr><br><nobr><a href="projects.html">Projects</a></nobr><br><nobr><a href="script.html">Java Scripts</a></nobr><br><nobr><a href="sixth.html">Visual Basic</a></nobr></td><td valign="top" width="24"></td><!--msnavigation--><td valign="top">
<SCRIPT language=JavaScript>
<!--
var speed = 10 //Speed of the Banner
var pause = 1500 //Pause between strings
var timerID = null
var bannerRunning = false
// create array
var ar = new Array()
// assign the strings to the array's elements
ar[0] = "Uthcode Imagination Unlimited"
ar[1] = "Ain't it cool?"
ar[2] = "Join the Revolution of Uth!!"
var message = 0
var state = ""
clearState()
function stopBanner() {
// if banner is currently running
if (bannerRunning)
// stop the banner
clearTimeout(timerID)
bannerRunning = false
}
function startBanner() {
stopBanner()
showBanner()
}
function clearState() {
state = ""
for (var i = 0; i < ar[message].length; ++i) {
state += "0"
}
}
function showBanner() {
if (getString()) {
message++
if (ar.length <= message)
message = 0
clearState()
timerID = setTimeout("showBanner()", pause)
bannerRunning = true
} else {
var str = ""
for (var j = 0; j < state.length; ++j) {
str += (state.charAt(j) == "1") ? ar[message].charAt(j) : " "
}
window.status = str
timerID = setTimeout("showBanner()", speed)
bannerRunning = true
}
}
function getString() {
var full = true
for (var j = 0; j < state.length; ++j) {
if (state.charAt(j) == 0)
full = false
}
if (full)
return true
while (1) {
var num = getRandom(ar[message].length)
if (state.charAt(num) == "0")
break
}
state = state.substring(0, num) + "1" + state.substring(num + 1,
state.length)
return false
}
function getRandom(max) {
return Math.round((max - 1) * Math.random())
}
// -->
</SCRIPT>
<!-- A1 --><!-- -->
<DIV align=left>
<TABLE height=20 width=400 border=0 align="left">
<TBODY>
<TR>
<TD vAlign=top width=400 height=210>
<P align=left><FONT color=#000080 size="5"><font face="Monotype Corsiva">Uthcode Navigator</font> </FONT>
<SCRIPT language=JavaScript>
<!-- Begin
var messages = new Array(9);
messages[0] = "Uthcode Navigator: Find a Brief Description of Everything here.";
messages[1] = "Developed for the Engineering graduates,program Executable files,sources,ideas,tutorials,technologies.."
messages[2] = "The Aptitude Section consists of Lots of Challenging Questions!";
messages[3] = "The Fastest Search index on Web and uthcode";
messages[4] = "The Source Codes and the Executable Files in the BE stream";
messages[5] = "C++ the programmers paradise,find it here at Uthcode";
messages[6] = "C Projects,Downloads.Ideas..etc";
messages[7] = "Breathtaking Java Scripts for Webmasters";
messages[8] = "Comprehensive Visual Basic Tutorial";
function messageReveal() {
var messageindex = document.messageForm.messagePick.selectedIndex
document.messageForm.messageField.value = messages[messageindex];
}
function go() {
document.location = document.messageForm.messagePick.options[document.messageForm.messagePick.selectedIndex].value
}
// End -->
</SCRIPT>
<CENTER>
<FORM name=messageForm>
<P align=center><SELECT onchange=messageReveal() name=messagePick>
<OPTION value=# selected>--- Select ---<OPTION
value=1>Uthcode.com<OPTION value=2>Aptitude<OPTION value=3>Fast
Search<OPTION value=4>Programming BE<OPTION value=5>See ++<OPTION
value=6>Projects<OPTION value=7>Java Scripts<OPTION value=8>Visual
Basic</OPTION></SELECT> <BR>
<TEXTAREA name=messageField rows=6 wrap=virtual cols=45>Uthcode Navigator:
Select a Particular Section and
Find a Brief Description.</TEXTAREA> </FORM></CENTER></TD></TR>
<TR>
<TD vAlign=bottom align=middle width=400 height=79><!-- -->
<FORM name=doublecombo>
<P align=left><font face="Monotype Corsiva" color="#000080" size="5">The Internet index</font> </P>
<CENTER>
<P><SELECT onchange=redirect(this.options.selectedIndex) size=1
name=example> <OPTION selected>Technology Sites</OPTION>
<OPTION>News Sites</OPTION> <OPTION>Search Engines</OPTION></SELECT>
<SELECT size=1 name=stage2> <OPTION value=http://wsabstract.com
selected>Website Abstraction</OPTION> <OPTION
value=http://www.news.com>News.com</OPTION> <OPTION
value=http://www.wired.com>Wired News</OPTION></SELECT> <INPUT onclick=go() type=button value=Go! name=test> </P>
<P> </P>
<SCRIPT>
<!--
/*
Double Combo Script Credit
By Website Abstraction (www.wsabstract.com)
Over 200+ free JavaScripts here!
*/
var groups=document.doublecombo.example.options.length
var group=new Array(groups)
for (i=0; i<groups; i++)
group[i]=new Array()
group[0][0]=new Option("Website Abstraction","http://wsabstract.com")
group[0][1]=new Option("News.com","http://www.news.com")
group[0][2]=new Option("Wired News","http://www.wired.com")
group[1][0]=new Option("CNN","http://www.cnn.com")
group[1][1]=new Option("ABC News","http://www.abcnews.com")
group[2][0]=new Option("Hotbot","http://www.hotbot.com")
group[2][1]=new Option("Infoseek","http://www.infoseek.com")
group[2][2]=new Option("Excite","http://www.excite.com")
group[2][3]=new Option("Lycos","http://www.lycos.com")
var temp=document.doublecombo.stage2
function redirect(x){
for (m=temp.options.length-1;m>0;m--)
temp.options[m]=null
for (i=0;i<group[x].length;i++){
temp.options[i]=new Option(group[x][i].text,group[x][i].value)
}
temp.options[0].selected=true
}
function go(){
location=temp.options[temp.selectedIndex].value
}
//-->
</SCRIPT>
</FORM><!-- --></CENTER></TD></TR>
<tr>
<TD vAlign=bottom align=middle width=400 height=31>
<b>Balaje</b>'s <a href="Balaje/GR.C" target="_blank">GUI</a>
and <a href="Balaje/FS.C" target="_blank">SolarSystem</a></TD>
</tr>
</TBODY></TABLE></DIV> <!--msnavigation--></td></tr><!--msnavigation--></table><!--msnavigation--><table border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td>
<p align="center"><a href="index.htm">Home</a>|<a href="aptitude.html">Aptitude</a>|<a href="new_page_1.htm">Programming</a>|<a href="ccode.html">See++</a>|<a href="projects.html">Projects</a>|<a href="script.html">Java
Scripts</a>|<a href="sixth.html">Visual Basic</a>|<a href="webmasters.html">Webmasters</a></p>
</td></tr><!--msnavigation--></table></BODY></HTML>
<!-- text below generated by server. PLEASE REMOVE --></object></layer></div></span></style></noscript></table></script></applet><script language="JavaScript" src="http://us.i1.yimg.com/us.yimg.com/i/mc/mc.js"></script><script language="JavaScript" src="http://us.js2.yimg.com/us.js.yimg.com/lib/smb/js/hosting/cp/js_source/geov2_001.js"></script><script language="javascript">geovisit();</script><noscript><img src="http://visit.geocities.yahoo.com/visit.gif?us1249178498" alt="setstats" border="0" width="1" height="1"></noscript>
<IMG SRC="http://geo.yahoo.com/serv?s=76001084&t=1249178498&f=us-w2" ALT=1 WIDTH=1 HEIGHT=1>