-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathcontactus.php
executable file
·103 lines (93 loc) · 3.43 KB
/
contactus.php
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
<!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" />
<link rel="stylesheet" href="includes/main.css" type="text/css" />
<script src = "http://maps.google.com/maps?file=api&v=2&key=ABQIAAAAJrRee8lcuBjal_Qwv1b4OhRmXrbAxOE51wLermFQKP4HobgCmRRpCWLv4gCVtEwCAgdlXtjdzjRYow&sensor=true" type="text/javascript">
</script>
<script type="text/javascript">
function initialize()
{
if (GBrowserIsCompatible())
{
var map = new GMap2(document.getElementById("map_canvas"));
//map.addControl(new GSmallMapControl());
//map.addControl(new GMapTypeControl());
map.setCenter(new GLatLng(16.682028, 74.470320), 13);
<!-- Marker -->
// Create a base icon for all of our markers that specifies the
// shadow, icon dimensions, etc.
var baseIcon = new GIcon(G_DEFAULT_ICON);
baseIcon.shadow = "http://www.google.com/mapfiles/shadow50.png";
baseIcon.iconSize = new GSize(20, 34);
baseIcon.shadowSize = new GSize(37, 34);
baseIcon.iconAnchor = new GPoint(9, 34);
baseIcon.infoWindowAnchor = new GPoint(9, 2);
// Creates a marker whose info window displays the letter corresponding
// to the given index.
function createMarker(point, index) {
// Create a lettered icon for this point using our icon class
var letter = String.fromCharCode("A".charCodeAt(0) + index);
var letteredIcon = new GIcon(baseIcon);
letteredIcon.image = "http://www.google.com/mapfiles/marker" + letter + ".png";
// Set up our GMarkerOptions object
markerOptions = { icon:letteredIcon };
var marker = new GMarker(point, markerOptions);
GEvent.addListener(marker, "click", function() {
marker.openInfoWindowHtml("D.K.T.E. Society's Textile & Engineering Institute, <br/> Rajwada , P.O.Box. No.130 ,Ichalkaranji-416 115 ,<br/> Dist: Kolhapur (MAHARASHTRA)INDIA.<br/>");
});
return marker;
}
// Add 10 markers to the map at random locations
var bounds = map.getBounds();
var southWest = bounds.getSouthWest();
var northEast = bounds.getNorthEast();
var lngSpan = northEast.lng() - southWest.lng();
var latSpan = northEast.lat() - southWest.lat();
for (var i = 0; i < 1; i++) {
var point = new GLatLng(16.682028, 74.470320);
map.addOverlay(createMarker(point, i));
}
<!-- End -->
map.setUIToDefault();
}
}
</script>
<title>E-Learning: Contact Us</title>
<style type="text/css">
<!--
.style1 {color: #FFFFFF}
-->
</style>
</head>
<body onload="initialize()" onunload="GUnload()">
<?php include ("includes/top_line.php"); ?>
<?php include ("includes/main_menu.php"); ?>
<div id="mid">
<img src="images/Ichalkarnji.jpg"/>
</div>
<div id="text">
<div id="contact_left">
<b>Contact Us</b>
D.K.T.E. Society's Textile & Engineering Institute,<br/>
Rajwada, P.O.Box. No.130,<br/>
Ichalkaranji-416 115<br/>
Dist: Kolhapur (MAHARASHTRA) INDIA.<br/>
Gram: DATTA TECH<br/>
Phone: (0230) 2421300,2432340, 2439557 to 59<br/>
Fax: (0230) 2432329<br/>
E-mail : <br/>
[email protected] <br/>
[email protected] <br/>
[email protected] <br/>
</div>
<div id="contact_right">
<div id="map_canvas">
</div>
</div>
</div>
<div id="line">
</div>
<?php include ("includes/bottom_line.php"); ?>
</body>
</html>