ÿþ<!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=iso-8859-1"> <title>Dream World Infrastructure Limited (DWIL)</title> <link rel="stylesheet" href="css3menu1/style.css" type="text/css" /> <style type="text/css"> <!-- body,td,th { font-family: Tahoma; font-size: 12px; color: #555554; } body { background-color: #f5f5ef; margin-left: 0px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; } --> </style> <link rel="stylesheet" href="thumbnailviewer.css" type="text/css" /> <script src="thumbnailviewer.js" type="text/javascript"> /*********************************************** * Image Thumbnail Viewer Script- © Dynamic Drive (www.dynamicdrive.com) * This notice must stay intact for legal use. * Visit http://www.dynamicdrive.com/ for full source code ***********************************************/ </script> <script type="text/javascript"> /*********************************************** * Ultimate Fade-In Slideshow (v1.5): © Dynamic Drive (http://www.dynamicdrive.com) * This notice MUST stay intact for legal use * Visit http://www.dynamicdrive.com/ for this script and 100s more. ***********************************************/ var fadeimages=new Array() //SET IMAGE PATHS. Extend or contract array as needed fadeimages[1]=["images/map.jpg", "", ""] //plain image syntax fadeimages[0]=["images/svgreens2.gif", "", ""] //image with link syntax fadeimages[2]=["images/svgreens3.gif", "", ""] //image with link and target syntax var fadebgcolor="white" ////NO need to edit beyond here///////////// var fadearray=new Array() //array to cache fadeshow instances var fadeclear=new Array() //array to cache corresponding clearinterval pointers var dom=(document.getElementById) //modern dom browsers var iebrowser=document.all function fadeshow(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){ this.pausecheck=pause this.mouseovercheck=0 this.delay=delay this.degree=10 //initial opacity degree (10%) this.curimageindex=0 this.nextimageindex=1 fadearray[fadearray.length]=this this.slideshowid=fadearray.length-1 this.canvasbase="canvas"+this.slideshowid this.curcanvas=this.canvasbase+"_0" if (typeof displayorder!="undefined") theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :) this.theimages=theimages this.imageborder=parseInt(borderwidth) this.postimages=new Array() //preload images for (p=0;p<theimages.length;p++){ this.postimages[p]=new Image() this.postimages[p].src=theimages[p][0] } var fadewidth=fadewidth+this.imageborder*2 var fadeheight=fadeheight+this.imageborder*2 if (iebrowser&&dom||dom) //if IE5+ or modern browsers (ie: Firefox) document.write('<div id="master'+this.slideshowid+'" style="position:relative;width:'+fadewidth+'px;height:'+fadeheight+'px;overflow:hidden;"><div id="'+this.canvasbase+'_0" style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;left:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);-moz-opacity:10;-khtml-opacity:10;background-color:'+fadebgcolor+'"></div><div id="'+this.canvasbase+'_1" style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;left:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);-moz-opacity:10;background-color:'+fadebgcolor+'"></div></div>') else document.write('<div><img name="defaultslide'+this.slideshowid+'" src="'+this.postimages[0].src+'"></div>') if (iebrowser&&dom||dom) //if IE5+ or modern browsers such as Firefox this.startit() else{ this.curimageindex++ setInterval("fadearray["+this.slideshowid+"].rotateimage()", this.delay) } } function fadepic(obj){ if (obj.degree<100){ obj.degree+=10 if (obj.tempobj.filters&&obj.tempobj.filters[0]){ if (typeof obj.tempobj.filters[0].opacity=="number") //if IE6+ obj.tempobj.filters[0].opacity=obj.degree else //else if IE5.5- obj.tempobj.style.filter="alpha(opacity="+obj.degree+")" } else if (obj.tempobj.style.MozOpacity) obj.tempobj.style.MozOpacity=obj.degree/101 else if (obj.tempobj.style.KhtmlOpacity) obj.tempobj.style.KhtmlOpacity=obj.degree/100 } else{ clearInterval(fadeclear[obj.slideshowid]) obj.nextcanvas=(obj.curcanvas==obj.canvasbase+"_0")? obj.canvasbase+"_0" : obj.canvasbase+"_1" obj.tempobj=iebrowser? iebrowser[obj.nextcanvas] : document.getElementById(obj.nextcanvas) obj.populateslide(obj.tempobj, obj.nextimageindex) obj.nextimageindex=(obj.nextimageindex<obj.postimages.length-1)? obj.nextimageindex+1 : 0 setTimeout("fadearray["+obj.slideshowid+"].rotateimage()", obj.delay) } } fadeshow.prototype.populateslide=function(picobj, picindex){ var slideHTML="" if (this.theimages[picindex][1]!="") //if associated link exists for image slideHTML='<a href="'+this.theimages[picindex][1]+'" target="'+this.theimages[picindex][2]+'">' slideHTML+='<img src="'+this.postimages[picindex].src+'" border="'+this.imageborder+'px">' if (this.theimages[picindex][1]!="") //if associated link exists for image slideHTML+='</a>' picobj.innerHTML=slideHTML } fadeshow.prototype.rotateimage=function(){ if (this.pausecheck==1) //if pause onMouseover enabled, cache object var cacheobj=this if (this.mouseovercheck==1) setTimeout(function(){cacheobj.rotateimage()}, 100) else if (iebrowser&&dom||dom){ this.resetit() var crossobj=this.tempobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas) crossobj.style.zIndex++ fadeclear[this.slideshowid]=setInterval("fadepic(fadearray["+this.slideshowid+"])",50) this.curcanvas=(this.curcanvas==this.canvasbase+"_0")? this.canvasbase+"_1" : this.canvasbase+"_0" } else{ var ns4imgobj=document.images['defaultslide'+this.slideshowid] ns4imgobj.src=this.postimages[this.curimageindex].src } this.curimageindex=(this.curimageindex<this.postimages.length-1)? this.curimageindex+1 : 0 } fadeshow.prototype.resetit=function(){ this.degree=10 var crossobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas) if (crossobj.filters&&crossobj.filters[0]){ if (typeof crossobj.filters[0].opacity=="number") //if IE6+ crossobj.filters(0).opacity=this.degree else //else if IE5.5- crossobj.style.filter="alpha(opacity="+this.degree+")" } else if (crossobj.style.MozOpacity) crossobj.style.MozOpacity=this.degree/101 else if (crossobj.style.KhtmlOpacity) crossobj.style.KhtmlOpacity=obj.degree/100 } fadeshow.prototype.startit=function(){ var crossobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas) this.populateslide(crossobj, this.curimageindex) if (this.pausecheck==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER var cacheobj=this var crossobjcontainer=iebrowser? iebrowser["master"+this.slideshowid] : document.getElementById("master"+this.slideshowid) crossobjcontainer.onmouseover=function(){cacheobj.mouseovercheck=1} crossobjcontainer.onmouseout=function(){cacheobj.mouseovercheck=0} } this.rotateimage() } </script> <script language="javascript"> /* Auto center window script- Eric King (http://redrival.com/eak/index.shtml) Permission granted to Dynamic Drive to feature script in archive For full source, usage terms, and 100's more DHTML scripts, visit http://dynamicdrive.com */ var win = null; function NewWindow(mypage,myname,w,h,scroll){ LeftPosition = (screen.width) ? (screen.width-w)/2 : 0; TopPosition = (screen.height) ? (screen.height-h)/2 : 0; settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable' win = window.open(mypage,myname,settings) } </script> <link href="style.css" rel="stylesheet" type="text/css" /> <link rel="stylesheet" href="css3menu1/style.css" type="text/css" /> <script type="text/javascript"> //Nested Side Bar Menu (Mar 20th, 09) //By Dynamic Drive: http://www.dynamicdrive.com/style/ <!-- function MM_preloadImages() { //v3.0 var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array(); var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++) if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}} } //--> function MM_swapImgRestore() { //v3.0 var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc; } function MM_findObj(n, d) { //v4.01 var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) { d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);} if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n]; for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document); if(!x && d.getElementById) x=d.getElementById(n); return x; } function MM_swapImage() { //v3.0 var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3) if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];} } function clearText(field){ if (field.defaultvalue == field.value) field.value = ''; else if (field.value == '') field.value = field.defaultvalue; } </script> <script type="text/javascript"> // Gallery script. // With image cross fade effect for those browsers that support it. // Script copyright (C) 2004 www.cryer.co.uk. // Script is free to use provided this copyright header is included. function LoadGallery(pictureName,imageFile,titleCaption,captionText) { var picture = document.getElementById(pictureName); if (picture.filters) { picture.style.filter="blendTrans(duration=1)"; picture.filters.blendTrans.Apply(); } picture.src = imageFile; if (picture.filters) { picture.filters.blendTrans.Play(); } document.getElementById(titleCaption).innerHTML=captionText; } </script> </head> <body onload="MM_preloadImages('m1-1.gif','m2-2.gif','m3-3.gif','m4-4.gif','m5-5.gif')"> <table width="761" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td width="161" align="center" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td valign="top" background="images/dwil_logo.jpg"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="161" height="166"> <param name="movie" value="logo.swf"> <param name="quality" value="high"> <param name="wmode" value="transparent" /> <embed src="logo.swf" wmode="transparent" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="161" height="166"></embed> </object></td> </tr> <tr> <td align="left"> <ul id="css3menu1" class="topmenu"> <li class="topfirst"><a href="index.html" title="Home" onmouseover="MM_swapImage('menu1','','m1-1.gif',1)" onmouseout="MM_swapImgRestore()" ><img id="menu1" name="menu1" alt="" src="m1.gif" height="59" border="0" /></a></li> <li><a href="#" title="About Us" onmouseover="MM_swapImage('menu2','','m2-1.gif',1)" onmouseout="MM_swapImgRestore()"><img alt="" src="m2.gif" id="menu2" name="menu2" height="59" border="0" /></a> <ul> <!--<li class="subfirst"><a href="company_profile.html" title="Company Profile">Company Profile</a></li>--> <li class="subfirst"><a href="mission_vision.html" title="Vision and Mission">Vision and Mission</a></li> <li><a href="management.html" title="Management">Management</a></li> </ul> </li> <li><a href="#" title="Current Projects" onmouseover="MM_swapImage('menu3','','m3-1.gif',1)" onmouseout="MM_swapImgRestore()" ><img alt="" src="m3.gif" id="menu3" name="menu3" height="59" border="0"/></a> <ul> <li class="subfirst"><a href="indraprasth_vihar.html" title="Indraprastha Vihar">Indraprastha Vihar</a></li> <li><a href="jaipur_extension.html" title="Jaipur Extension">Jaipur Extension</a></li> <li><a href="OkayPlus.htm" title="Okay Plus">Okay Plus Spaces</a></li> <li><a href="shopping_triangle.html" title="Shoppin' Triangle">Shoppin' Triangle</a></li> <li><a href="BeawerResidency.htm" title="Beawar Residency">Beawar Residency</a></li> </ul> </li> <li><a href="#" title="Media" onmouseover="MM_swapImage('menu4','','m4-1.gif',1)" onmouseout="MM_swapImgRestore()" ><img alt="" src="m4.gif" id="menu4" name="menu4" height="59" border="0"/></a> <ul> <li class="subfirst"><a href="adds.html" title="Advertisements">Advertisements</a></li> <li><a href="news.html" title="News">Press Room</a></li> <li><a href="press_room.html" title="Press Release">Exhibition</a></li> <li><a href="SocialActivity.html" title="Social Activity">Social Activity</a></li> </ul> </li> <!-- <li><a href="mkt_associate_form.html" title="Business Associate Form">Business Associate Form</a></li> <li><a href="career.html" title="Career">Career</a></li> <li><a href="enquiry_form.html" title="Enquiry Form">Enquiry Form</a></li> --> <li><a href="contact.html" title="Contact Us" onmouseover="MM_swapImage('menu5','','m5-1.gif',1)" onmouseout="MM_swapImgRestore()"><img alt="" src="m5.gif" id="menu5" name="menu5" height="59" border="0" /></a></li> </ul> </td> </tr> <tr> <td>&nbsp;</td> </tr> <tr> <td>&nbsp;</td> </tr> </table></td> <td width="15" valign="top"><img src="images/spacer.gif" width="15" height="1"></td> <td width="585" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td height="166" align="left" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td height="166" valign="top" background="images/slideshowtop.jpg" style="background-position:right top; background-repeat:no-repeat"><table width="96%" border="0" align="right" cellpadding="0" cellspacing="0"> <tr> <td height="100">&nbsp;</td> </tr> <tr> <td class="clock-text"><script> /* Live Date Script- &copy; Dynamic Drive (www.dynamicdrive.com) For full source code, installation instructions, 100's more DHTML scripts, and Terms Of Use, visit http://www.dynamicdrive.com */ var dayarray=new Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday") var montharray=new Array("January","February","March","April","May","June","July","August","September","October","November","December") function getthedate(){ var mydate=new Date() var year=mydate.getYear() if (year < 1000) year+=1900 var day=mydate.getDay() var month=mydate.getMonth() var daym=mydate.getDate() if (daym<10) daym="0"+daym var hours=mydate.getHours() var minutes=mydate.getMinutes() var seconds=mydate.getSeconds() var dn="AM" if (hours>=12) dn="PM" if (hours>12){ hours=hours-12 } if (hours==0) hours=12 if (minutes<=9) minutes="0"+minutes if (seconds<=9) seconds="0"+seconds //change font size here var cdate=""+dayarray[day]+", "+montharray[month]+" "+daym+", "+year+" "+hours+":"+minutes+":"+seconds+" "+dn +"" if (document.all) document.all.clock.innerHTML=cdate else if (document.getElementById) document.getElementById("clock").innerHTML=cdate else document.write(cdate) } if (!document.all&&!document.getElementById) getthedate() function goforit(){ if (document.all||document.getElementById) setInterval("getthedate()",1000) } </script> <span id="clock"></span></td> </tr> </table></td> </tr> <tr> <td align="center" valign="top"><img src="images/slideshow.jpg" width="571" height="212"></td> </tr> <tr> <td valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="4%">&nbsp;</td> <td width="96%" align="left" valign="top"><img src="images/leaves_btm.gif" width="182" height="28"></td> </tr> </table></td> </tr> </table></td> </tr> <tr> <td valign="top">&nbsp;</td> </tr> <tr> <td height="20">&nbsp;</td> </tr> <tr> <td><table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td style="width: 10px">&nbsp;</td> <td width="575" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td style="height: 18px"> <strong><span style="font-size: 9pt">Press Releases</span></strong></td> </tr> <!-- <tr> <td height="20">&nbsp;</td> </tr>--> <tr> <td> <table width="100%" cellpadding="0" cellspacing="0"> <tr> <td style="width:100%" valign="top"> <ol style="font-size:10pt;"> <li style="padding-bottom:8px;"><a href="images/dwil_news1.jpg" rel =thumbnail ?? class="left-links"> Thursday, 2nd June 2011.</a></li> <li style="padding-bottom:8px;"><a href="images/dwil_news2.jpg" rel =thumbnail ?? class="left-links"> North East Reality Expo 2011.</a></li> <li style="padding-bottom:8px;"><a href="images/Shoppingcarnival.jpg" rel =thumbnail ?? class="left-links">Shopping Carnival - Lucky Draw </a></li> <li style="padding-bottom:8px;"><a href="images/airport_press.jpg" rel =thumbnail ?? class="left-links">International Airport on Tonk Road </a></li> <li style="padding-bottom:8px;"><a href="images/entryplaza_press.jpg" rel =thumbnail ?? class="left-links">Entry Plaza</a></li> <li style="padding-bottom:8px;"><a href="images/housing_board_press.jpg" rel =thumbnail ?? class="left-links">Housing Board s proposed colony on Tonk Road</a></li> <li style="padding-bottom:8px;"><a href="images/ringroad_press.jpg" rel =thumbnail ?? class="left-links">Ring Road Connecting Tonk Road</a></li> <li style="padding-bottom:8px;"><a href="PDFs/major_develoments_on_tonk_road.pdf" target="1" class="left-links">Major Developments Coming up on Tonk Road</a></li> <li style="padding-bottom:8px;"><a href="images/1.jpg" rel =thumbnail ?? class="left-links"> . @ ( * 0 $ 0 @ 0 ?   0 K ! </a></li> <li style="padding-bottom:8px;"><a href="images/3-a.jpg" rel =thumbnail ?? class="left-links"> K   0 K ! * 0 ! M 0 @ . 5 0 M 2 M ! - ( 5 - > 0 $  >  . M 8 8 December 2007</a></li> <li style="padding-bottom:8px;"><a href="images/3-b.jpg" rel =thumbnail ?? class="left-links"> K  2 0 ? 2 G  M 8 M ! 5 ? & + (   5 0 M  </a></li><li style="padding-bottom:8px;"><a href="images/3-c.jpg" rel =thumbnail ?? class="left-links"> ( M & M 0 * M 0 8 M % 5 ? 9 > 0 . G  .  & ? 0 ( ? 0 M . > # </a></li> <li style="padding-bottom:8px;"><a href="images/3004.jpg" rel =thumbnail ?? class="left-links">Golden Voice - Presented by DWIL</a></li> <li style="padding-bottom:8px;"><a href="images/3005.jpg" rel =thumbnail ?? class="left-links">Golden Voice Invitation - Presented by DWIL</a></li> <li style="padding-bottom:8px;"><a href="images/3006.jpg" rel =thumbnail ?? class="left-links">Property Plus - 21<sup>st</sup> April 2007</a></li> <li style="padding-bottom:8px;"><a href="images/3007.jpg" rel =thumbnail ?? class="left-links">Golden Voice - Presented by DWIL (Rajasthan Patrika)</a></li> <li style="padding-bottom:8px;"><a href="images/4.jpg" rel =thumbnail ?? class="left-links">8 . 8 M / > ( 9 @  , ( G ( ? / . ( - Rajasthan Patrika 20<sup>th</sup> March</a></li> <li style="padding-bottom:8px;"><a href="images/9.jpg" rel =thumbnail ?? class="left-links">9 K  2 - B   ! K  @ - 5 M / ( @ 2 > . @ </a></li> </ol> </td> </tr> </table> </td> </tr> <tr> <td height="30">&nbsp;</td> </tr> </table></td> </tr> </table></td> </tr> <tr> <td>&nbsp;</td> </tr> <tr> <td>&nbsp;</td> </tr> </table></td> </tr> <tr> <td colspan="3"><table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="2"><img src="images/footer_left_corner.jpg" width="2" height="66"></td> <td background="images/footer_bg.jpg" bgcolor="#908977"><table width="95%" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td width="55%" class="footer-text" colspan="3" align="center"> <a href="mkt_associate_form.html" title="Business Associate Form" style="color:Blue;" onmouseover="this.style.color='white';" onmouseout="this.style.color='Blue'">Business Associate Form</a>&nbsp;||&nbsp; <a href="career.html" title="Career" style="color:Blue;" onmouseover="this.style.color='white';" onmouseout="this.style.color='Blue'">Career</a>&nbsp;||&nbsp; <a href="enquiry_form.html" title="Enquiry Form" style="color:Blue;" onmouseover="this.style.color='white';" onmouseout="this.style.color='Blue'">Enquiry Form</a>&nbsp;||&nbsp; <a href="contact.html" title="Contact Us" style="color:Blue;" onmouseover="this.style.color='white';" onmouseout="this.style.color='Blue'">Contact Us</a> </td> </tr> <tr> <td width="55%" style="height:20px;" class="footer-text" colspan="3" align="center"> &nbsp; </td> </tr> <tr> <td width="55%" class="footer-text">Copyright &copy; Dream World Infrastructure Limited (DWIL)</td> <td width="11%">&nbsp;</td> <td width="34%" align="right"><span class="footer-text">Designed & Maintained by :</span> <a href="http://www.kamtechassociates.com" target ="_blank" class="footer">Kamtech</a></td> </tr> </table></td> <td width="2"><img src="images/footer_right_corner.jpg" width="2" height="66"></td> </tr> </table></td> </tr> </table> </body> </html>