<?php
ob_start();
?>
<?php
include("connection.php");
?>
<?php
if($_REQUEST['plot']=='')
{
	header("location:saledeed_DMC5001.php");
	
}
else if(isset($_REQUEST['plot']))
{
	
	$opt = $_REQUEST['plot'];
	 $t_word=$_SESSION['t_word'];
	 $total=$_SESSION['total'];

 $sel_plot =mysql_query("select * from plot_info  where plot_no = ".$opt);
 $sel_pay =mysql_query("select * from payment_info  where plot_no = ".$opt);
 $sel_inv =mysql_query("select * from investor_details  where plot_no = ".$opt);
  $sel_survey =mysql_query("select * from survey_no");


$fet_plot=mysql_fetch_array($sel_plot);
$fet_pay=mysql_fetch_array($sel_pay);
$fet_inv=mysql_fetch_array($sel_inv);
$fet_sur=mysql_fetch_array($sel_survey);

}
else if(!isset($_REQUEST['plot']))

{
	header("location:saledeed_DMC5001.php");
}

?>
<?php


$amount = moneyFormatIndia( $total );






function moneyFormatIndia($num){
        $nums = explode(".",$num);
        if(count($nums)>2){
            return "0";
        }else{
        if(count($nums)==1){
            $nums[1]="00";
        }
        $num = $nums[0];
        $explrestunits = "" ;
        if(strlen($num)>3){
            $lastthree = substr($num, strlen($num)-3, strlen($num));
            $restunits = substr($num, 0, strlen($num)-3); 
            $restunits = (strlen($restunits)%2 == 1)?"0".$restunits:$restunits; 
            $expunit = str_split($restunits, 2);
            for($i=0; $i<sizeof($expunit); $i++){

                if($i==0)
                {
                    $explrestunits .= (int)$expunit[$i].","; 
                }else{
                    $explrestunits .= $expunit[$i].",";
                }
            }
            $thecash = $explrestunits.$lastthree;
        } else {
            $thecash = $num;
        }
        return $thecash.".".$nums[1]; 
        }
    }
?>

<style type="text/css" media="print" >
           .nonPrintable{display:none;} /*class for the element we don’t want to print*/
          </style>
          
           <script type="text/javascript">     
        function PrintDiv() {    
           var divToPrint = document.getElementById('divToPrint');
           var popupWin = window.open('', '_blank', 'width=300,height=300');
           popupWin.document.open();
           popupWin.document.write('<html><body onload="window.print()">' + divToPrint.innerHTML + '</html>');
            popupWin.document.close();
                }
     </script>

<html>
<head>



<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>



<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>DMC-1 Sale Deed PLot No <?=$fet_plot[0];?></title>
<style type="text/css">
/*@media print
{
  table { page-break-after:auto }
  tr    { page-break-inside:avoid; page-break-after:auto }
  td    { page-break-inside:avoid; page-break-after:auto }
  thead { display:table-header-group }
  tfoot { display:table-footer-group }
   div { page-break-after:auto }
}
*/</style>




<script type="text/javascript">

function sameinfo()
{

document.getElementById('firstname2').value=document.getElementById('firstname').value;
document.getElementById('mobilenumber2').value=document.getElementById('mobilenumber').value;
document.getElementById('email2').value=document.getElementById('email').value;
document.getElementById('plot_no2').value=document.getElementById('plot_no').value;
document.getElementById('sq_yard2').value=document.getElementById('sq_yard').value;
document.getElementById('plot_no2').value=document.getElementById('plot_no').value;
document.getElementById('sq_feet2').value=document.getElementById('sq_feet').value;

document.getElementById('price_per_sq_yard2').value=document.getElementById('price_per_sq_yard').value;
document.getElementById('price_per_sq_feet2').value=document.getElementById('price_per_sq_feet').value;
document.getElementById('total_payment2').value=document.getElementById('total_payment').value;

document.getElementById('service2').value=document.getElementById('service').value;
document.getElementById('regi2').value=document.getElementById('regi').value;
document.getElementById('stamp2').value=document.getElementById('stamp').value;
document.getElementById('charge2').value=document.getElementById('charge').value;
}
</script>










<style type="text/css">

/*Example CSS for the two demo scrollers*/

#pscroller1{
width: 800px;
height: 80px;
border: 1px solid black;
padding: 10px;
padding-top:10px;
background-color:#D7FFAE;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:13px;
line-height:22px;
-moz-box-shadow: 5px 5px 5px #888888; /* Firefox 3.6 and earlier */
box-shadow: 10px 10px 5px #888888;
border-radius:10px;
-moz-border-radius:10px; /* Firefox 3.6 and earlier */
margin-left:auto;
margin-right:auto;

}


#pscroller1 a{
text-decoration: none;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size:15px;
color:#000033;
font-weight:bold;
}

.someclass{ //class to apply to your scroller(s) if desired
}

</style>



<script type="text/javascript">

/***********************************************
* Pausing up-down scroller- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for this script and 100s more.
***********************************************/

function pausescroller(content, divId, divClass, delay){
this.content=content //message array content
this.tickerid=divId //ID of ticker div to display information
this.delay=delay //Delay between msg change, in miliseconds.
this.mouseoverBol=0 //Boolean to indicate whether mouse is currently over scroller (and pause it if it is)
this.hiddendivpointer=1 //index of message array for hidden div
document.write('<div id="'+divId+'" class="'+divClass+'" style="position: relative; overflow: hidden"><div class="innerDiv" style="position: absolute; width: 100%" id="'+divId+'1">'+content[0]+'</div><div class="innerDiv" style="position: absolute; width: 100%; visibility: hidden" id="'+divId+'2">'+content[1]+'</div></div>')
var scrollerinstance=this
if (window.addEventListener) //run onload in DOM2 browsers
window.addEventListener("load", function(){scrollerinstance.initialize()}, false)
else if (window.attachEvent) //run onload in IE5.5+
window.attachEvent("onload", function(){scrollerinstance.initialize()})
else if (document.getElementById) //if legacy DOM browsers, just start scroller after 0.5 sec
setTimeout(function(){scrollerinstance.initialize()}, 500)
}

// -------------------------------------------------------------------
// initialize()- Initialize scroller method.
// -Get div objects, set initial positions, start up down animation
// -------------------------------------------------------------------

pausescroller.prototype.initialize=function(){
this.tickerdiv=document.getElementById(this.tickerid)
this.visiblediv=document.getElementById(this.tickerid+"1")
this.hiddendiv=document.getElementById(this.tickerid+"2")
this.visibledivtop=parseInt(pausescroller.getCSSpadding(this.tickerdiv))
//set width of inner DIVs to outer DIV's width minus padding (padding assumed to be top padding x 2)
this.visiblediv.style.width=this.hiddendiv.style.width=this.tickerdiv.offsetWidth-(this.visibledivtop*2)+"px"
this.getinline(this.visiblediv, this.hiddendiv)
this.hiddendiv.style.visibility="visible"
var scrollerinstance=this
document.getElementById(this.tickerid).onmouseover=function(){scrollerinstance.mouseoverBol=1}
document.getElementById(this.tickerid).onmouseout=function(){scrollerinstance.mouseoverBol=0}
if (window.attachEvent) //Clean up loose references in IE
window.attachEvent("onunload", function(){scrollerinstance.tickerdiv.onmouseover=scrollerinstance.tickerdiv.onmouseout=null})
setTimeout(function(){scrollerinstance.animateup()}, this.delay)
}


// -------------------------------------------------------------------
// animateup()- Move the two inner divs of the scroller up and in sync
// -------------------------------------------------------------------

pausescroller.prototype.animateup=function(){
var scrollerinstance=this
if (parseInt(this.hiddendiv.style.top)>(this.visibledivtop+5)){
this.visiblediv.style.top=parseInt(this.visiblediv.style.top)-5+"px"
this.hiddendiv.style.top=parseInt(this.hiddendiv.style.top)-5+"px"
setTimeout(function(){scrollerinstance.animateup()}, 50)
}
else{
this.getinline(this.hiddendiv, this.visiblediv)
this.swapdivs()
setTimeout(function(){scrollerinstance.setmessage()}, this.delay)
}
}

// -------------------------------------------------------------------
// swapdivs()- Swap between which is the visible and which is the hidden div
// -------------------------------------------------------------------

pausescroller.prototype.swapdivs=function(){
var tempcontainer=this.visiblediv
this.visiblediv=this.hiddendiv
this.hiddendiv=tempcontainer
}

pausescroller.prototype.getinline=function(div1, div2){
div1.style.top=this.visibledivtop+"px"
div2.style.top=Math.max(div1.parentNode.offsetHeight, div1.offsetHeight)+"px"
}

// -------------------------------------------------------------------
// setmessage()- Populate the hidden div with the next message before it's visible
// -------------------------------------------------------------------

pausescroller.prototype.setmessage=function(){
var scrollerinstance=this
if (this.mouseoverBol==1) //if mouse is currently over scoller, do nothing (pause it)
setTimeout(function(){scrollerinstance.setmessage()}, 100)
else{
var i=this.hiddendivpointer
var ceiling=this.content.length
this.hiddendivpointer=(i+1>ceiling-1)? 0 : i+1
this.hiddendiv.innerHTML=this.content[this.hiddendivpointer]
this.animateup()
}
}

pausescroller.getCSSpadding=function(tickerobj){ //get CSS padding value, if any
if (tickerobj.currentStyle)
return tickerobj.currentStyle["paddingTop"]
else if (window.getComputedStyle) //if DOM2
return window.getComputedStyle(tickerobj, "").getPropertyValue("padding-top")
else
return 0

}

</script>





<style type="text/css">

img.expando{ /*sample CSS for expando images. Not required but recommended*/
border: none;
vertical-align: top; /*top aligns image, so mouse has less of a change of moving out of image while image is expanding*/
}

</style>

<script type="text/javascript" src="expando.js">

/* Expando Image Script ©2008 John Davenport Scheuer
   as first seen in http://www.dynamicdrive.com/forums/
   username: jscheuer1 - This Notice Must Remain for Legal Use
   */

</script>





<script type="text/javascript">var switchTo5x=true;</script>
<script type="text/javascript" src="http://w.sharethis.com/button/buttons.js"></script>
<script type="text/javascript">stLight.options({publisher: "e86add9f-ed60-4090-83c0-ab43ad48f21e"});</script>
<link href="style2.css" rel="stylesheet" type="text/css" />
<script>
$(document).ready(function(){
  $("#show").click(function(){
    $("#show").show();
  });
});
</script>


<!--Make sure page contains valid doctype at the very top!-->

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>

<script type="text/javascript" src="stepcarousel.js">

/***********************************************
* Step Carousel Viewer script- (c) Dynamic Drive DHTML code library (www.dynamicdrive.com)
* Visit http://www.dynamicDrive.com for hundreds of DHTML scripts
* This notice must stay intact for legal use
***********************************************/

</script>

<script type="text/javascript" src="stepcarouse2.js">

/***********************************************
* Step Carousel Viewer script- (c) Dynamic Drive DHTML code library (www.dynamicdrive.com)
* Visit http://www.dynamicDrive.com for hundreds of DHTML scripts
* This notice must stay intact for legal use
***********************************************/

</script>



<script type="text/javascript" src="stepcarouse3.js">

/***********************************************
* Step Carousel Viewer script- (c) Dynamic Drive DHTML code library (www.dynamicdrive.com)
* Visit http://www.dynamicDrive.com for hundreds of DHTML scripts
* This notice must stay intact for legal use
***********************************************/

</script>

<style type="text/css">

.stepcarousel{
position: relative; /*leave this value alone*/

overflow: scroll; /*leave this value alone*/
width: 900px; /*Width of Carousel Viewer itself*/
height: 150px; /*Height should enough to fit largest content's height*/
}

.stepcarousel .belt{
position: absolute; /*leave this value alone*/
left: 0;
top: 0;
}

.stepcarousel .panel{
float: left; /*leave this value alone*/
overflow: hidden; /*clip content that go outside dimensions of holding panel DIV*/
margin: 10px; /*margin around each panel*/
width: 170px; /*Width of each panel holding each content. If removed, widths should be individually defined on each content DIV then. */
}




.stepcarouse2{
position: relative; /*leave this value alone*/

overflow: scroll; /*leave this value alone*/
width: 900px; /*Width of Carousel Viewer itself*/
height: 150px; /*Height should enough to fit largest content's height*/
}

.stepcarouse2 .belt2{
position: absolute; /*leave this value alone*/
left: 0;
top: 0;
}

.stepcarouse2 .panel2{
float: left; /*leave this value alone*/
overflow: hidden; /*clip content that go outside dimensions of holding panel DIV*/
margin: 10px; /*margin around each panel*/
width: 200px; /*Width of each panel holding each content. If removed, widths should be individually defined on each content DIV then. */
}
</style>





<style>
.stepcarouse3{
position: relative; /*leave this value alone*/

overflow: scroll; /*leave this value alone*/
width: 900px; /*Width of Carousel Viewer itself*/
height: 150px; /*Height should enough to fit largest content's height*/
}

.stepcarouse3 .belt3{
	position: absolute; /*leave this value alone*/
	left: 0;
	top: 0;
}

.stepcarouse3 .panel3{
float: left; /*leave this value alone*/
overflow: hidden; /*clip content that go outside dimensions of holding panel DIV*/
margin: 10px; /*margin around each panel*/
width: 200px;
 /*Width of each panel holding each content. If removed, widths should be individually defined on each content DIV then. */
}
</style>




<script type="text/javascript">

stepcarousel.setup({
	galleryid: 'mygallery', //id of carousel DIV
	beltclass: 'belt', //class of inner "belt" DIV containing all the panel DIVs
	panelclass: 'panel', //class of panel DIVs each holding content
	autostep: {enable:true, moveby:1, pause:3000},
	panelbehavior: {speed:500, wraparound:true, wrapbehavior:'slide', persist:true},
	defaultbuttons: {enable: true, moveby: 1, leftnav: ['arrowl.gif', -5, 80], rightnav: ['arrowr.gif', -20, 80]},
	statusvars: ['statusA', 'statusB', 'statusC'], //register 3 variables that contain current panel (start), current panel (last), and total panels
	contenttype: ['inline'] //content setting ['inline'] or ['ajax', 'path_to_external_file']
})

</script>


<script type="text/javascript">

stepcarousel.setup({
	galleryid: 'mygallery2', //id of carousel DIV
	beltclass: 'belt2', //class of inner "belt" DIV containing all the panel DIVs
	panelclass: 'panel2', //class of panel DIVs each holding content
	autostep: {enable:true, moveby:1, pause:3000},
	panelbehavior: {speed:500, wraparound:true, wrapbehavior:'slide', persist:true},
	defaultbuttons: {enable: true, moveby: 1, leftnav: ['arrowl.gif', -5, 80], rightnav: ['arrowr.gif', -20, 80]},
	statusvars: ['statusA', 'statusB', 'statusC'], //register 3 variables that contain current panel (start), current panel (last), and total panels
	contenttype: ['inline'] //content setting ['inline'] or ['ajax', 'path_to_external_file']
})

</script>


<script type="text/javascript">

stepcarousel.setup({
	galleryid: 'mygallery3', //id of carousel DIV
	beltclass: 'belt3', //class of inner "belt" DIV containing all the panel DIVs
	panelclass: 'panel3', //class of panel DIVs each holding content
	autostep: {enable:true, moveby:1, pause:3000},
	panelbehavior: {speed:500, wraparound:true, wrapbehavior:'slide', persist:true},
	defaultbuttons: {enable: true, moveby: 1, leftnav: ['arrowl.gif', -5, 80], rightnav: ['arrowr.gif', -20, 80]},
	statusvars: ['statusA', 'statusB', 'statusC'], //register 3 variables that contain current panel (start), current panel (last), and total panels
	contenttype: ['inline'] //content setting ['inline'] or ['ajax', 'path_to_external_file']
})

</script>











<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>








<link href="imgbubbles.css" rel="stylesheet" type="text/css" />

<style type="text/css">

/*CSS for 2 demos on the page*/
#orbs li{
width: 45px; /*width of image container. Should be wider than contained images (before bubbling) */
height:45px; /*height of image container. Should be taller than contained images (before bubbling) */
}

#orbs li img{
width: 40px; /*width of each image before bubbling*/
height: 45px; /*height of each image*/
}

#squares li{
width: 35px; /*width of image container. Must be wider than contained images (before bubbling) */
height:40px; /*height of image container. Must be taller than contained images (before bubbling) */
}

#squares li img{
width: 21px; /*width of each image before bubbling*/
height: 21px; /*height of each image*/
}

</style>

<script type="text/javascript" src="imgbubbles.js">

/***********************************************
* Image Bubbles effect- (c) Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for this script and 100s more
***********************************************/

</script>

<script type="text/javascript">
<!--
jQuery(document).ready(function($){
	$('ul#orbs').imgbubbles({factor:1.75}) //add bubbles effect to UL id="orbs"
	$('ul#squares').imgbubbles({factor:2.5}) //add bubbles effect to UL id="squares"
})

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_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_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];}
}
//-->
</script>








<style type="text/css">
<!--
body {
	background-image: url();
	background-repeat: repeat;
	font-size:18px;
}
body,td,th {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 16px;
}
.style34 {font-size: 17px}
-->
</style>

<!-- Conact module -->

<style>
.rfpforminputbox, .calicon {
	background-color: #FFFFFF;
	border-color:#999999;
	color: #000;
}
.rfpforminputbox {
	border-style: solid;
	border-width: 1px;
	height: 24px;
	margin: 0;
	padding: 0;
	resize: none;
	width: 255px;
}
.rfpforminputbox {
	font-size: 12px;
	line-height: 18px;
}
.rfpformdropdown {
	background-color: #FFFFFF;
	border-color: #999999;
	color: #000;
}
.rfpformdropdown {
	border-style: solid;
	border-width: 1px;
	height: 24px;
	line-height: 13px;
	margin: 0;
	padding: 0;
	width: 255px;
}
.button {
	background-color:#009900;
	border: 1px solid #999999;
	border-radius: 3px 3px 3px 3px;
	box-shadow: 1px 2px 2px #270902;
	color: #FFFFFF !important;
	cursor: pointer;
	font-family: 'LatoLightRegular', arial, sans-serif;
	font-size: 13px;
	padding: 4px 15px;
	text-decoration: none;
	text-transform: uppercase;
}
.size2{ font-weight:bold;}

#display_data{   color: #000 !important;
    font-size: 22px !important;
    font-weight: bold !important;}
.style38 {font-size: 19px}
.rfpforminputbox1 {	background-color: #FFFFFF;
	border-color:#999999;
	color: #000;
}
.rfpforminputbox1 {	border-style: solid;
	border-width: 1px;
	height: 24px;
	margin: 0;
	padding: 0;
	resize: none;
	width: 255px;
}
.rfpforminputbox1 {	font-size: 12px;
	line-height: 18px;
}
.rfpforminputbox2 {	background-color: #FFFFFF;
	border-color:#999999;
	color: #000;
}
.rfpforminputbox2 {	border-style: solid;
	border-width: 1px;
	height: 24px;
	margin: 0;
	padding: 0;
	resize: none;
	width: 255px;
}
.rfpforminputbox2 {	font-size: 12px;
	line-height: 18px;
}
.rfpforminputbox3 {	background-color: #FFFFFF;
	border-color:#999999;
	color: #000;
}
.rfpforminputbox3 {	border-style: solid;
	border-width: 1px;
	height: 24px;
	margin: 0;
	padding: 0;
	resize: none;
	width: 255px;
}
.rfpforminputbox3 {	font-size: 12px;
	line-height: 18px;
}
.rfpforminputbox11 {background-color: #FFFFFF;
	border-color:#999999;
	color: #000;
}
.rfpforminputbox11 {border-style: solid;
	border-width: 1px;
	height: 24px;
	margin: 0;
	padding: 0;
	resize: none;
	width: 255px;
}
.rfpforminputbox11 {font-size: 12px;
	line-height: 18px;
}
.rfpforminputbox21 {background-color: #FFFFFF;
	border-color:#999999;
	color: #000;
}
.rfpforminputbox21 {border-style: solid;
	border-width: 1px;
	height: 24px;
	margin: 0;
	padding: 0;
	resize: none;
	width: 255px;
}
.rfpforminputbox21 {font-size: 12px;
	line-height: 18px;
}
.rfpforminputbox211 {background-color: #FFFFFF;
	border-color:#999999;
	color: #000;
}
.rfpforminputbox211 {border-style: solid;
	border-width: 1px;
	height: 24px;
	margin: 0;
	padding: 0;
	resize: none;
	width: 255px;
}
.rfpforminputbox211 {font-size: 12px;
	line-height: 18px;
}
.rfpforminputbox4 {	background-color: #FFFFFF;
	border-color:#999999;
	color: #000;
}
.rfpforminputbox4 {	border-style: solid;
	border-width: 1px;
	height: 24px;
	margin: 0;
	padding: 0;
	resize: none;
	width: 255px;
}
.rfpforminputbox4 {	font-size: 12px;
	line-height: 18px;
}
.rfpforminputbox2111 {background-color: #FFFFFF;
	border-color:#999999;
	color: #000;
}
.rfpforminputbox2111 {border-style: solid;
	border-width: 1px;
	height: 24px;
	margin: 0;
	padding: 0;
	resize: none;
	width: 255px;
}
.rfpforminputbox2111 {font-size: 12px;
	line-height: 18px;
}
.rfpforminputbox111 {background-color: #FFFFFF;
	border-color:#999999;
	color: #000;
}
.rfpforminputbox111 {border-style: solid;
	border-width: 1px;
	height: 24px;
	margin: 0;
	padding: 0;
	resize: none;
	width: 255px;
}
.rfpforminputbox111 {font-size: 12px;
	line-height: 18px;
}
.rfpforminputbox5 {	background-color: #FFFFFF;
	border-color:#999999;
	color: #000;
}
.rfpforminputbox5 {	border-style: solid;
	border-width: 1px;
	height: 24px;
	margin: 0;
	padding: 0;
	resize: none;
	width: 255px;
}
.rfpforminputbox5 {	font-size: 12px;
	line-height: 18px;
}
.rfpforminputbox6 {	background-color: #FFFFFF;
	border-color:#999999;
	color: #000;
}
.rfpforminputbox6 {	border-style: solid;
	border-width: 1px;
	height: 24px;
	margin: 0;
	padding: 0;
	resize: none;
	width: 255px;
}
.rfpforminputbox6 {	font-size: 12px;
	line-height: 18px;
}
.rfpforminputbox7 {	background-color: #FFFFFF;
	border-color:#999999;
	color: #000;
}
.rfpforminputbox7 {	border-style: solid;
	border-width: 1px;
	height: 24px;
	margin: 0;
	padding: 0;
	resize: none;
	width: 255px;
}
.rfpforminputbox7 {	font-size: 12px;
	line-height: 18px;
}
.rfpforminputbox61 {background-color: #FFFFFF;
	border-color:#999999;
	color: #000;
}
.rfpforminputbox61 {border-style: solid;
	border-width: 1px;
	height: 24px;
	margin: 0;
	padding: 0;
	resize: none;
	width: 255px;
}
.rfpforminputbox61 {font-size: 12px;
	line-height: 18px;
}
.button1 {	background-color:#009900;
	border: 1px solid #999999;
	border-radius: 3px 3px 3px 3px;
	box-shadow: 1px 2px 2px #270902;
	color: #FFFFFF !important;
	cursor: pointer;
	font-family: 'LatoLightRegular', arial, sans-serif;
	font-size: 13px;
	padding: 4px 15px;
	text-decoration: none;
	text-transform: uppercase;
}
.rfpforminputbox8 {	background-color: #FFFFFF;
	border-color:#999999;
	color: #000;
}
.rfpforminputbox8 {	border-style: solid;
	border-width: 1px;
	height: 24px;
	margin: 0;
	padding: 0;
	resize: none;
	width: 255px;
}
.rfpforminputbox8 {	font-size: 12px;
	line-height: 18px;
}
.rfpforminputbox1111 {background-color: #FFFFFF;
	border-color:#999999;
	color: #000;
}
.rfpforminputbox1111 {border-style: solid;
	border-width: 1px;
	height: 24px;
	margin: 0;
	padding: 0;
	resize: none;
	width: 255px;
}
.rfpforminputbox1111 {font-size: 12px;
	line-height: 18px;
}
.rfpforminputbox21111 {background-color: #FFFFFF;
	border-color:#999999;
	color: #000;
}
.rfpforminputbox21111 {border-style: solid;
	border-width: 1px;
	height: 24px;
	margin: 0;
	padding: 0;
	resize: none;
	width: 255px;
}
.rfpforminputbox21111 {font-size: 12px;
	line-height: 18px;
}
.rfpforminputbox31 {background-color: #FFFFFF;
	border-color:#999999;
	color: #000;
}
.rfpforminputbox31 {border-style: solid;
	border-width: 1px;
	height: 24px;
	margin: 0;
	padding: 0;
	resize: none;
	width: 255px;
}
.rfpforminputbox31 {font-size: 12px;
	line-height: 18px;
}
.rfpforminputbox41 {background-color: #FFFFFF;
	border-color:#999999;
	color: #000;
}
.rfpforminputbox41 {border-style: solid;
	border-width: 1px;
	height: 24px;
	margin: 0;
	padding: 0;
	resize: none;
	width: 255px;
}
.rfpforminputbox41 {font-size: 12px;
	line-height: 18px;
}
.rfpforminputbox51 {background-color: #FFFFFF;
	border-color:#999999;
	color: #000;
}
.rfpforminputbox51 {border-style: solid;
	border-width: 1px;
	height: 24px;
	margin: 0;
	padding: 0;
	resize: none;
	width: 255px;
}
.rfpforminputbox51 {font-size: 12px;
	line-height: 18px;
}
.rfpforminputbox611 {background-color: #FFFFFF;
	border-color:#999999;
	color: #000;
}
.rfpforminputbox611 {border-style: solid;
	border-width: 1px;
	height: 24px;
	margin: 0;
	padding: 0;
	resize: none;
	width: 255px;
}
.rfpforminputbox611 {font-size: 12px;
	line-height: 18px;
}
.rfpforminputbox71 {background-color: #FFFFFF;
	border-color:#999999;
	color: #000;
}
.rfpforminputbox71 {border-style: solid;
	border-width: 1px;
	height: 24px;
	margin: 0;
	padding: 0;
	resize: none;
	width: 255px;
}
.rfpforminputbox71 {font-size: 12px;
	line-height: 18px;
}
table
{
	font-size:24px;
}
</style>


<link rel="stylesheet" type="text/css" href="tabcontent.css" />

<script type="text/javascript" src="tabcontent.js">

/***********************************************
* Tab Content script v2.2- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for full source code
***********************************************/

</script>




<style type="text/css">
<!--
.rfpforminputbox101 {background-color: #FFFFFF;
	border-color:#999999;
	color: #000;
}
.rfpforminputbox101 {border-style: solid;
	border-width: 1px;
	height: 24px;
	margin: 0;
	padding: 0;
	resize: none;
	width: 255px;
}
.rfpforminputbox101 {font-size: 12px;
	line-height: 18px;
}
.rfpforminputbox121 {background-color: #FFFFFF;
	border-color:#999999;
	color: #000;
}
.rfpforminputbox121 {border-style: solid;
	border-width: 1px;
	height: 24px;
	margin: 0;
	padding: 0;
	resize: none;
	width: 255px;
}
.rfpforminputbox121 {font-size: 12px;
	line-height: 18px;
}
.rfpforminputbox131 {background-color: #FFFFFF;
	border-color:#999999;
	color: #000;
}
.rfpforminputbox131 {border-style: solid;
	border-width: 1px;
	height: 24px;
	margin: 0;
	padding: 0;
	resize: none;
	width: 255px;
}
.rfpforminputbox131 {font-size: 12px;
	line-height: 18px;
}
.rfpforminputbox81 {background-color: #FFFFFF;
	border-color:#999999;
	color: #000;
}
.rfpforminputbox81 {border-style: solid;
	border-width: 1px;
	height: 24px;
	margin: 0;
	padding: 0;
	resize: none;
	width: 255px;
}
.rfpforminputbox81 {font-size: 12px;
	line-height: 18px;
}
.rfpforminputbox91 {background-color: #FFFFFF;
	border-color:#999999;
	color: #000;
}
.rfpforminputbox91 {border-style: solid;
	border-width: 1px;
	height: 24px;
	margin: 0;
	padding: 0;
	resize: none;
	width: 255px;
}
.rfpforminputbox91 {font-size: 12px;
	line-height: 18px;
}
.style40 {font-size: 18px}
.style41 {
	font-size: 20px;
	font-weight: bold;
}
.style44 {font-size: 20px}
.style10 {
	font-size: 18px;
}
.style10 strong {
	font-size: 22px;
	color: #FF0;
}
-->
</style>
</head>



<body>




<?php
$a=1;
?>

<table border="0" align="center" cellpadding="0" cellspacing="0" style="padding-right:75px; width:636px; height:1140px; padding-left:230px;" id="print">
  <tr>
   
    <td width="632" height="1138">
    <div id="divToPrint" >

    <table width="632" border="0" cellspacing="0" cellpadding="0">
   <p align="center"><?=$a=$a;?></p>
  <tr>
    <td>
      <table width="632" height="1140" border="0" cellpadding="0" cellspacing="0" style="font-size:36px;">
        <tr>
          <td width="628"><table width="58%" align="right" cellpadding="0" cellspacing="0" style="margin-right:80px; border: groove 5px; padding:10PX;">
            <tr>
              <td style="padding:10PX; font-size:36px; margin-bottom:100px;" align="center"><div align="center" class="style41" style="line-height:35PX; text-decoration:underline;">SUB PLOT NO : <?php echo $fet_plot['plot_no']; ?> 
               <BR>
                DHOLERA METRO CITY-2</div>
              <br>
                <strong><span class="style44">REGI NO.:-_______________<br>
                <br>
                DATE:- _________________</span><br>
                <br>
                </strong>
                
                </td>
                <td></td>
            </tr>
        
          </table></td>
        </tr>
        </table>
        </td>
        </tr>
        </table>
       
        <p style="page-break-before: always"></p>
        
   
      <p align="center"><?=$a=$a+1;?></p><table width="100%" height="1140" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><table width="69%" border="0" align="right" cellpadding="0" cellspacing="0" style="margin-right:40px">
            <tr>
              <td><p align="center" class="style41" style=" line-height:22px"><span style="letter-spacing:7px; margin-bottom:10px; padding-bottom:10px;">CONVEYANCE DEED </span><br> 
                (Rs. <?php echo $amount;?>/-)</p></td>
            </tr>
            <tr>
              <td><p align="justify" style="margin-top:10px; line-height:30px">THIS  INDENTURE is made at AHMEDABAD this <span class="style41" style=" line-height:22px">
              <!--  <input type="text" class="rfpforminputbox9" maxlength="100" size="5" value=""  id="day" name="day"  onclick="makemewhite(this)" onKeyPress="makemewhite(this)" style="text-align:center; font-size:14px; font-weight:bold;"  />-->__________
              </span>&nbsp;day of&nbsp; <span class="style41" style=" line-height:22px">
            <!--  <input type="text" class="rfpforminputbox9" maxlength="100" size="15" value=""  id="date" name="date"  onclick="makemewhite(this)" onKeyPress="makemewhite(this)" style="text-align:center; font-size:14px; font-weight:bold;"  />-->_________________
              </span>2014 by and  between <strong>MR. DHIRUBHAI KANJIBHAI PATEL</strong>,&nbsp;  abult, Hindu by religion, residing at:18, New Suryanagar Society, B/h.  L.B.S. Stadium, Bapunagar, Ahmedabad 380024, having PAN: BFMPP9287E, herein  referred to as the <strong>&ldquo;Vender&rdquo;</strong> (which expression shall unless repugnant to the  context or meaning thereof mean and include their heirs, executors, administrators, successors and assigns) of the <strong>ONE PART; </strong>
              
              </p></td>
            </tr>
          </table></td>
        </tr>
      </table>
      
      <p style="page-break-before: always" id="br"></p>
      <p align="center"><?=$a=$a+1;?></p>
	  
	  
	  <table width="100%" height="1140" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td><table width="436" border="0" align="right" cellpadding="0" cellspacing="0" style="margin-right:40px">
            <tr>
              <td width="436">                                      <div align="center"><strong>AND</strong><br>
              </div>
               
     <p align="justify" style="line-height:30px; font-size:16px;">           
<?php
 $inv_inv =mysql_query("select * from investor_details  where plot_no = ".$opt);
 				
				while($row = mysql_fetch_assoc($inv_inv)) {
   $fet_get[] = $row;
}

							$max = mysql_num_rows($inv_inv);
				
				for($i=0;$i<$max;$i++)
				{
					if($i>0)
					{echo ", &nbsp;And &nbsp;";
					}
					 echo "<b>".$fet_get[$i]['prefix'].$fet_get[$i]['inv_name']. "</b>&nbsp;Having&nbsp;<b>PAN - ".$fet_get[$i]['pan_no'].",</b>&nbsp;adult, residing ".$fet_get[$i]['country'].", ".$fet_get[$i]['address'].", &nbsp;".$fet_get[$i]['city']."-".$fet_get[$i]['pincode'];
				  }
				  
				  
				  ?>
             </p>
                <p align="justify" style="margin-top:0px; line-height:30px">hereinafter referred to as the "Purchaser" (which expression shall unless repugnant to the context or meaning thereof mean and include their heirs, executors, administrators, successors and assigns) of the OTHER PART;</p>
                <div align="center"><strong>AND</strong><br>
             <p align="justify" style="margin-top:10px; line-height:30px">  <strong>M/s. DHOLERA SIR INFRA DEVELOPMENT, having PAN NO. AAIFD2823L)</strong> a partnership firm, having its office at:- <strong>B/31, Sanskruti Complex, Bopal, Ahmedabad-380058, by and through its authorized Partner Mr. Akshay Dhirubhai Patel, </strong>adult, hindu by religion, residing at <strong>:-18-New Suryanagar Co. Op. Housing Society Ltd, Bapunagar,</strong><br>
                </div>
                </p></td>
            </tr>
          </table></td>
        </tr>
      </table> 
      
      <p style="page-break-before: always"></p>
      <p align="center"><?=$a=$a+1;?></p>
	  
	  
	  <table width="100%" height="1140" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td><table width="436" border="0" align="right" cellpadding="0" cellspacing="0" style="margin-right:40px">
            <tr>
              <td width="436"><p align="justify" style="margin-top:0px; line-height:30px"><strong>Ahmedabad,</strong> hereinafter referred to as the <strong>"THE DEVELOPER" or "PROJECT CONSULTANT"</strong> (which expression shall unless it be repugnant to the context or meaning thereof deemed to include its partners as at present and from time to time and the heirs, executors, administrator and legal representatives of the last surviving partner) of the <strong>CONFIRMING PARTY-1;</strong><br>
                <br>
                    <strong>WHEREAS</strong> the Vendor own non-agricultural land bearing survey no.198 of mouje village Valinda, Taluka Dhandhuka, District Ahmedabad, registration Sub District-Dhandhuka, admeasuring 36827 sq.mtr. or thereabout as per revenue records;<br><br>
                    <strong>AND WHEREAS</strong> the land bearing Survey No. 198 was originally belonged to one Vadilal Dolatchand and as he was in actual physical possession of the land since very long and paying the revenue in respect to the said land for a long time, his name was recorded in records of rights as owner;<br><br>
                    <strong>AND WHEREAS</strong> thereafter Shri Vadilal Dolatchand sold this land by regd. Sale deed to Shri Remanbhai Daudbhai therefore, his name was entered in the revenue records as owner on 25-10-1945 under mutation entry No. 509; <br><br>
                    <strong>AND WHEREAS</strong> thereafter Remanbhai Daudbhai partitioned his agriculture land in his lifetime and this land was given to his son namely Shri Mahmadbhai Remanbhai therefore his name was
             
                </p></td>
            </tr>
          </table></td>
        </tr>
      </table>
	        <p style="page-break-before: always" id="br"></p>

	  
      <p align="center"><?=$a=$a+1;?></p>
	  
	  
	   <table width="100%" height="1140" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td><table width="436" border="0" align="right" cellpadding="0" cellspacing="0" style="margin-right:40px">
            <tr>
              <td width="436"><p align="justify" style="margin-top:0px; line-height:30px">entered in the revenue records as owner on 27-02-1961 under mutation entry no.755;<br><br>
                  <strong>AND WHEAREAS</strong> thereafter Mahmadbhai Remanbhai also partitioned agriculture lands owned by him in his lifetime and this land given to his son namely Shri Umarbhai Mahmadbhai.  The said partition had been recorded in revenue record under mutation entry no.1403 on 27-05-;<br>
                  <br>
                  <strong>AND WHEREAS</strong> thereafter, said Umarbhai Mahmadbhai sold this land by regi. Sale deed no.1564 on 27-09-2006 to Shri Chandrakantbhai Tokarshibhai.  The name was entered in the revenue records as owner on 21-03-2007 under mutation entry no.1819;<br>
                  <br>
                  <strong>AND WHEREAS</strong> thereafter, said Shri Chandrakantbhai Tokarshibhai conveyed the said land of survey no.198 under a Sale Deed dated 27-10-2010, which was registered under Sr. No. 4208 on the same day, to the Vendors viz., (1)SHRI DHIRUBHAI KANJIBHAI AND (2) SHRI NARROTTAMBHAI MAKANBHAI, and a mutation entry No. 2153 dated 04-12-2010 in respect said transfer is recorded in the revenue records and since then, the said land was under occupation of the Vendors as owners;<br>
                  <br>
                  <strong>AND WHEREAS</strong> for the purpose of putting the said land to non-agricultural use, the Vendors submitted Layout Plan of sub plots 
                  
                  </p></td>
            </tr>
          </table></td>
        </tr>
      </table>
	  
	        <p style="page-break-before: always" id="br"></p>

      <p align="center"><?=$a=$a+1;?></p>
	  
	  
	    <table width="100%" height="1140" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td><table width="436" border="0" align="right" cellpadding="0" cellspacing="0" style="margin-right:40px">
            <tr>
              <td width="436"><p align="justify" style="margin-top:0px; line-height:30px">on the said land to Nagar Niyojak, Ahmedabad, and Nagar Niyojak, Ahmedabad, has given an opinion vide Letter No. NABP/Valinda/Dhandhuka/2799, dated 06-09-2012;<br>
                  <br>

                  <strong>AND WHEREAS</strong> thereafter, by order No. MSL/BKHP/S.R.-296/VASHI.637-47, dated 15-05-2012, the District Development Officer [D.D.O.], Ahmedabad granted permission for non-agricultural residential use of 36659 sq. mtrs. + 168 sq. mtrs which is under land acquisition of S.H. -6 of Survey No. 198;<br>
                  <br>

                  <strong>AND WHEREAS</strong> in pursuance of an internal understanding arrived at between the Vendors and the Developer, it was agreed that the development of the said land of survey no.198 be undertaken and carried out by the Developer by way of enrolling purchasers/members, for the said sub plots and generally completing the scheme to be known as <strong>"Dholera Metro City";</strong><br>
                  <br>


                  <strong>AND WHEREAS</strong> by a development agreement dated 27/12/2011 entered into by and between Vendors and the Developer, the Developer has been appointed by the Vendors to develop the said property and to implement and carry out the said scheme of <strong>"Dholera Metro City "</strong> with powers and authorities, inter alia, to  
                  
                  </p></td>
            </tr>
          </table></td>
        </tr>
      </table>
	  
	        <p style="page-break-before: always" id="br"></p>

      <p align="center"><?=$a=$a+1;?></p>
	  
	  
	    <table width="100%" height="1140" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td><table width="436" border="0" align="right" cellpadding="0" cellspacing="0" style="margin-right:40px">
            <tr>
              <td width="436"><p align="justify" style="margin-top:0px; line-height:30px">register purchasers/members and to agree for conveyance of sub plots to them on such terms and conditions as the Developer may deem fit and proper, to collect and receive moneys from the purchasers/members, to give receipt/s for the same, to put the purchasers/member/s in possession of the premises agreed to be allotted to them and generally to do all such acts, deeds, matters and things as may be necessary or convenient for the purpose of the scheme;<br>
                  <br>
                  <strong>AND WHEREAS</strong> the Second Vendor (1) SHRI NARROTTAMBHAI MAKANBHAI (seller) due to his personal reasons not willing to continue himself as co-owner of the said remained land of Dholera Metro City of survey no.198 of mouje village Valinda, Taluka-Dhandhuka, District Ahmedabad, therefore second Vendor desired to sell his remaining ½ ownership right, title and interest after selling lands of 10 sub plots No. 13A, 24, 25, 38, 39, 40, 47, 53, 57 and 71 in the said scheme and the First vendor (1) SHRI DHIRUBHAI KANJIBHAI PATEL (Purchaser) also desired to acquire and has shown his willingness to purchase remaining ½ right, title and interest after selling lands of above sub plots in the said scheme  of the Second Vendor;<br>
                  <br>

                  <strong>AND WHEREAS</strong> thereafter, said Second Vendor SHRI 
                  
                  </p></td>
            </tr>
          </table></td>
        </tr>
      </table>
	  
	  
	        <p style="page-break-before: always" id="br"></p>

      <p align="center"><?=$a=$a+1;?></p>
	  
	  
	      <table width="100%" height="1140" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td><table width="436" border="0" align="right" cellpadding="0" cellspacing="0" style="margin-right:40px">
            <tr>
              <td width="436"><p align="justify" style="margin-top:0px; line-height:30px">NARROTTAMBHAI MAKANBHAI (seller) conveyed his remaining ½ ownership right, title and interest after selling lands of of 10 sub plots No. 13A, 24, 25, 38, 39, 40, 47, 53, 57 in the said scheme of Survey no.198 under a Sale Deed dated 29-10-2013, which was registered under Sr. No. 2484 on the same day, to the First Vendor (Purchaser) viz., (1)SHRI DHIRUBHAI KANJIBHAI and since then, the said land was under occupation of the First Vendor as owners;<br>
                  <br>
                  <strong>AND WHEREAS</strong> thereafter, said Second Vendor SHRI NARROTTAMBHAI MAKANBHAI (seller) conveyed his remaining ½ ownership right, title and interest of 84 sq. mtr agriculture land in the said Survey no.198 under a Sale Deed dated 29-10-2013, which was registered under Sr. No. 2485 on the same day, to the First Vendor (Purchaser) viz., (1)SHRI DHIRUBHAI KANJIBHAI and since then, the said land was under occupation of the First Vendor as owners;<br>
                  <br>
                  <strong>AND WHEREAS</strong> the Purchaser desired to acquire one sub plot in the scheme known as <strong>"Dholera Metro City"</strong> being <strong>sub plot no. <?php echo $fet_plot['plot_no']; ?></strong>
                  
              &nbsp;admeasuring 
              <strong><?php echo $fet_plot['carpet_area'];?> sq. Mtrs.</strong> along with 
               
              <strong><?php echo $fet_plot['common_area'];?>sq. Mtrs</strong>. of undivided proportionate share/interest in the common roads and common plots aggregating to total 
              
              <strong><?php echo $fet_plot['super_area'];?>sq. Mtrs.</strong> in the land bearing survey no.198 with all rights and interests 
              
              
              </p></td>
            </tr>
          </table></td>
        </tr>
      </table>
      
      		       <p style="page-break-before: always" id="br"></p>

      <p align="center"><?=$a=$a+1;?></p>
	  
	  
	      <table width="100%" height="1140" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td><table width="436" border="0" align="right" cellpadding="0" cellspacing="0" style="margin-right:40px">
            <tr>
              <td width="436"><p align="justify" style="margin-top:0px; line-height:30px">
              appurtenants and incidental thereto and had approached the Developer in that regards;
              <br>
                  <br>
                  <strong>AND WHEREAS</strong>the Developer has agreed to the requests of the purchaser whereupon the purchaser has paid <strong> Rs. <?= $amount;?>/- (Rupees <?=$t_word;?>&nbsp;Only)</strong> to the Developer as purchase price which are consideration money of Vendor and remuneration or profit of Developer.<br>
                  <br>
                  <strong>AND WHEREAS</strong>the Purchasers has also perused the plans and specifications of the scheme and has satisfied 
				  <?php if($max>1){ echo "themselves&nbsp;";
				  }
				  else if(($max=1)&&($fet_get['prefix']=="Mr."))
				  {
					  echo "himself&nbsp;";
					  }
				   else if(($max=1)&&($fet_get['prefix']=="Mrs."))
				  {
					  echo "herself&nbsp;";
					  }
					  else if(($max=1)&&($fet_get['prefix']=="Ms."))
				  {
					  echo "herself&nbsp;";
					  }
				  ?>
				  that the same are in accordance with the GDCR;
                  <br><br>
                 	<strong>AND WHEREAS</strong> the purchaser has read and gone through the certificate supplied by the venders regarding its titles to the lands on which "Dholera Metro City" the scheme is lying and have agreed to acquire the sub plot, thereafter only;
                 <br><br>
					<strong>AND WHEREAS </strong>the Purchaser has paid the said sum of Rs. <?php echo $amount;?>/- (Rupees <?php echo $t_word;?>&nbsp;Only)  towards sub plot costs of the scheme to the Developer and have satisfied  <?php if($max>1){ echo "themselves&nbsp;";
				  }
				  else if(($max=1)&&($fet_get['prefix']=="Mr."))
				  {
					  echo "himself&nbsp;";
					  }
				   else if(($max=1)&&($fet_get['prefix']=="Mrs."))
				  {
					  echo "herself&nbsp;";
					  }
					  else if(($max=1)&&($fet_get['prefix']=="Ms."))
				  {
					  echo "herself&nbsp;";
					  }
				  
				  ?> with respect to the work done and the titles of the Vendor to the same and now requested the Vendor and Developer to execute in their favour, a Deed of Conveyance of the said sub plot more 
            </p> </td>
            </tr>
          </table></td>
        </tr>
      </table>
		       <p style="page-break-before: always" id="br"></p>

      <p align="center"><?=$a=$a+1;?></p>
	  
	  
	      <table width="100%" height="1140" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td><table width="436" border="0" align="right" cellpadding="0" cellspacing="0" style="margin-right:40px">
            <tr>
              <td width="436"><p align="justify" style="margin-top:0px; line-height:30px">
             particularly described in the Schedule hereunder written, which the Vendor and Developer have agreed to do in the manner hereinafter appearing;
              <br>
                  <br>
                  <strong>NOW THIS DEED OF CONVEYANCE WITNESSETH THAT </strong>in pursuance of the agreement and in consideration a total sum of Rs. <?php echo $amount;?>/- (Rupees <?php echo $t_word;?>&nbsp;Only) paid by the Purchaser to Developer as follows:<br>
                  <?php
				  while($ff_pay = mysql_fetch_array($sel_pay))
				  {?>
                  <br>
                 	<table style="height:120;width:500px;" ><tr><td style="padding-top:0px;">Rs.&nbsp;<?php echo moneyFormatIndia($ff_pay['payment']);?><p style="height:80px;">&nbsp;</p></td><td> <div style="width:250px; height:120px; float:right">(Ruppes&nbsp;<?= isset($ff_pay['payment_word'])?$ff_pay['payment_word']:"<b>Payment  Entry Is Not Available</b>";?>Only) paid by the Purchaser to the Developer towards the consideration by Ch No.&nbsp;<?= isset($ff_pay['chq_no'])?$ff_pay['chq_no']:"";?>  Of &nbsp;<?= isset($ff_pay['bank_name'])?$ff_pay['bank_name']:"<b>Bank Name Is Not Available</b>";?>  &nbsp;Date &nbsp; <?= isset($ff_pay['payment_date'])?$ff_pay['payment_date']:"";?>
                 	  &nbsp;</div></td></tr></table>
                      <?php
				  }?>
                     
                   
                       <br>
                  	<table><tr><td>In Total</td></tr></table>
                 	<table style="height:120;width:500px;" ><tr><td style="padding-top:0px;">Rs.&nbsp;<?php echo $amount;?><p style="height:80px;">&nbsp;</p></td><td> <div style="width:250px; height:120px; float:right">(Ruppes&nbsp;<?= isset($t_word)?$t_word:"<b>Payment  Entry Is Not Available</b>";?>&nbsp;Only) 
                 	  &nbsp;</div></td></tr></table>
                      <br>
                      <br>
            </p> </td>
            </tr>
          </table></td>
        </tr>
      </table>
      
            <p style="page-break-before: always" id="br"></p>

      <p align="center"><?=$a=$a+1;?></p>
		 <table width="100%" height="1140" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td><table width="436" border="0" align="right" cellpadding="0" cellspacing="0" style="margin-right:40px">
            <tr>
              <td width="436"><p align="justify" style="margin-top:0px; line-height:30px">
            
                 
                 
                     
                      	<br>
                      (The receipt of which sum of money the Vendor and Developer doth hereby admit and acknowledge and of and from the same and every part thereof doth hereby acquit, release and discharge the Purchasers forever).   
                      <br>
                            It is hereby further recorded that in consideration of the purchaser having paid the consideration as agreed and undertaken under the scheme the developer has, at the direction of the owners, handed over and delivered to the purchaser, vacant and peaceful possession of the said premises and the purchaser hereby confirms having received the same. 
                            <br>
                                    It is hereby recorded that in consideration of the conveyance deed execution, the developers and the vendor has hold all the rights to use all the Roads and amenities facilities developed in the Dholera Metro City scheme and the purchaser hereby confirms the same. It is hereby recorded that in consideration of the conveyance deed execution, the developers and the vendor has hold all the rights to use all the Roads and amenities facilities developed in the Dholera Metro City scheme 
                                    <br>
             </p></td>
            </tr>
          </table></td>
        </tr>
      </table>
       

            <p style="page-break-before: always" id="br"></p>

      <p align="center"><?=$a=$a+1;?></p>		
       <table width="100%" height="1140" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td><table width="436" border="0" align="right" cellpadding="0" cellspacing="0" style="margin-right:40px">
            <tr>
              <td width="436"><p align="justify" style="margin-top:0px; line-height:30px">
            
                 
                  <br>
                  	for future development of any other schemes in the vicinity of the Dholera Metro City scheme and the purchaser hereby confirms the same. It is hereby also recorded that in consideration of the conveyance deed execution, the developers and the vendor has hold all the rights to allocate/assign/give right of use of all the Roads and amenities facilities developed in the Dholera Metro City scheme for the future development of all others any types of land development schemes in the vicinity of the Dholera Metro City scheme by developers, vendor, their associates firm, company and/or any other entity and the purchaser hereby confirms the same.
                     
                      	<br>
                           The Vendor doth hereby sell, grant, transfer, convey, assign and assure and the Developer also assigns and release all their rights or interest unto the Purchasers the said sub plot being sub plot no. &nbsp;<?=$fet_plot[0];?> admeasuring &nbsp;<?=$fet_plot[1];?> sq. Mtrs. along with &nbsp;<?=$fet_plot[2];?> sq. Mtrs. of undivided proportionate interest in the common roads and common plots aggregating to total&nbsp;<?=$fet_plot[3];?> sq. Mtrs. in the scheme known as "Dholera Metro City " on the land bearing survey no.198 of mouje Valinda, Taluka Dhandhuka, Sub-District Dhandhuka, District Ahmedabad, more particularly described in the schedule hereunder written TOGETHER WITH  all 
                      <br>
                   
             </p></td>
            </tr>
          </table></td>
        </tr>
      </table>
      

            <p style="page-break-before: always" id="br"></p>

      <p align="center"><?=$a=$a+1;?></p>
      		 <table width="100%" height="1140" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td><table width="436" border="0" align="right" cellpadding="0" cellspacing="0" style="margin-right:40px">
            <tr>
              <td width="436"><p align="justify" style="margin-top:0px; line-height:30px">
            
                 
                  <br>
 court yard, sewers, drains, fences, trees, plants, paths, passages, water courses, easements advantages, and other rights and appurtenances thereto now or at any time heretofore usually held, used  occupied  or  enjoyed  or  reputed  or  known  as  part  or 
purchaser/member thereof AND ALSO all estate,  right, titles, interest, use, inheritance, property, possession, benefits, easements claim and demand whatsoever both at law and equity of the Vendor into out of or upon the said premises, TO HAVE  AND TO HOLD the said land and premises and all and singular and other premises hereto granted, conveyed, transferred and assured or intended so to be with it and every of its rights members and appurtenances unto and to the use of the Purchaser forever absolutely free from all encumbrance and claims AND the Developer has formed Dholera Metro City Co. Operative Housing Service Society Ltd. for maintenance of common areas and amenities in the scheme of "Dholera Metro City" and the purchaser will have to became a member of the said service society and to use and occupy the property SUBJECT TO sold herein, rules and regulations of said service society for better administration and maintenance of "Dholera Metro City" AND SUBJECT  also to the resolutions, decisions time to time, of the Managing  Committee and for the General Committee of the society, in respect to payment of maintenance charges and 
                      <br>
                   </p>
             </td>
            </tr>
          </table></td>
        </tr>
      </table>
      

            <p style="page-break-before: always" id="br"></p>

      <p align="center"><?=$a=$a+1;?></p>
      
            <table width="100%" height="1140" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td><table width="436" border="0" align="right" cellpadding="0" cellspacing="0" style="margin-right:40px">
            <tr>
              <td width="436"><p align="justify" style="margin-top:0px; line-height:30px">
            
                 
                  <br>
the increase-decrease thereof, and the transfer fees and other charges payable in case of subsequent transfer of the said sub 
plot by  the  purchaser,  AND  SUBJECT also to payment of taxes, duties, assessment, charges and other outgoings  which may hereafter  become payable in respect to the said land, and premises  to the Government, Local Authority or other Public Body or authority as well as  contributions or other moneys becoming   payable for  maintenance and administration of common areas, amenities and facilities  in the scheme, to  Dholera Metro City Co. Op. Housing Service Society Ltd. AND the Vendor and Developer hereby for themselves and their heirs, executors and administrators   covenant with the Purchaser that notwithstanding any act, deed, matter or thing  whatsoever by them or by any person or persons, lawfully and equitably claiming by from, through, under or in trust for Vendor made, done committed or omitted or  knowingly or  willingly suffered to the contrary and the Vendor has in themselves  good right and full authority to grant, convey, transfer, release or  assure the said land, and premises hereby granted, conveyed, released or assured or intended so  to be unto  and  to   the  use of the Purchaser  in  the manner  aforesaid  which  the  Developer  confirms  AND  THAT THE PURCHASER  SHALL  and  may  at all  times  hereafter, peaceably and quietly enter upon have, occupy, possess and

                      <br>
                </p>   
             </td>
            </tr>
          </table></td>
        </tr>
      </table>
      
      

            <p style="page-break-before: always" id="br"></p>

      <p align="center"><?=$a=$a+1;?></p>  
          <table width="100%" height="1140" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td><table width="436" border="0" align="right" cellpadding="0" cellspacing="0" style="margin-right:40px">
            <tr>
              <td width="436"><p align="justify" style="margin-top:0px; line-height:30px">
            
                 
                  <br>
 enjoy the said land  and  receive the  rents ,  issues  and    profits, thereof and of every part thereof to and for their own use and benefit without any suit, eviction or interruption, claim or demand whatsoever from or by the Vendor or Developer any persons claiming whether lawfully or equitably or to claim by from, under or in trust from  <?php if($max>1){ echo "them&nbsp;";
				  }
				  else if(($max=1)&&($fet_get['prefix']=="Mr."))
				  {
					  echo "him&nbsp;";
					  }
				   else if(($max=1)&&($fet_get['prefix']=="Mrs."))
				  {
					  echo "her&nbsp;";
					  }
					  else if(($max=1)&&($fet_get['prefix']=="Ms."))
				  {
					  echo "her&nbsp;";
					  }
				  
				  ?> and freely and clearly and absolutely acquitted exonerated and forever discharged or defended and kept harmless, indemnified, of from and against all former and other estates, titles, charges and encumbrances whatsoever made, executed, occasioned or suffered  by the Vendor or Developer or by person or persons lawfully or equitably claiming or to claim by, from under or in trust for them or any of them AND further that the Vendor and Developer and all persons having or claiming any estate, right, title and interest in the said premises hereby transferred by, from under or in trust for the Vendor and Developer or their heirs, successor and assigns or any of them shall and will from time to time and at all times hereafter at the request and cost of the Purchaser do and execute or cause to be done and executed all such further and other lawful acts, deeds and things in the law whatsoever for the better and more perfectly and absolutely granting the said land, and premises unto and to the use of the Purchaser in the manner aforesaid as by the Purchaser, their successors or assigns or counsel-in-law shall be 
                      <br>
               </p>    
             </td>
            </tr>
          </table></td>
        </tr>
      </table>
      

            <p style="page-break-before: always" id="br"></p>

      <p align="center"><?=$a=$a+1;?></p>  
          <table width="100%" height="1140" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td><table width="436" border="0" align="right" cellpadding="0" cellspacing="0" style="margin-right:40px">
            <tr>
              <td width="436"><p align="justify" style="margin-top:0px; line-height:30px">
            
                 
                  <br>
reasonably advised or required AND the Vendor and Developer do hereby covenant with the Purchaser that the Vendor have not done, omitted or knowingly or willingly suffered or being party or privy to any act, deed or thing whereby they are prevented from transferring, assigning and assuring his right, title and interest in the said land and premises to the Purchaser in the manner aforesaid or whereby the same or any part thereof are/is/can or may be charged encumbered or prejudicially affected in estate, right, or otherwise howsoever.                       <br>
        The purchaser agrees that the scheme shall always be known as <b>"Dholera Metro City"</b> and this name shall not be changed in any circumstances.  It is also agreed between the parties hereto that membership of the service society will be deemed to be attached to the property conveyed herein.		<br>
        The property sold or conveyed herein does not fall within the area designated as "Disturbed Area" under the Gujarat Prohibition of Transfer of Immovable Property and Provisions for Protection of Tenants from Eviction from Premises in Disturbed Areas Act, 1991 and therefore no permission for its transfer is required to be obtained.
        <br>
             The Dholera Metro City Co. Op. Hou. Service Soc. Ltd. will be given membership to the purchaser and also allotted shares 
               </p>    
             </td>
            </tr>
          </table></td>
        </tr>
      </table>
      

            <p style="page-break-before: always" id="br"></p>

      <p align="center"><?=$a=$a+1;?></p>
            <table width="100%" height="1140" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td><table width="436" border="0" align="right" cellpadding="0" cellspacing="0" style="margin-right:40px">
            <tr>
              <td width="436"><p align="justify" style="margin-top:0px; line-height:30px">
            
                 
                  <br>
certificate to the purchaser in their name.  The purchaser agreed to deposit the amount of maintenance contribution in said service society. if purchaser will require electricity, drainage connection, water connection and other facilities in future those charges will be extra paid by the purchaser to the Developer.
<br>
     The purchaser shall hold the ownership rights of the property with and subject to their rights and obligations as member of the said service society and the same shall stand inseparable, co-existing and be transferable jointly only;
     <br>

        All expenses of and incidental to this conveyance such as Stamp Duty, Registration Fees and other miscellaneous expenses have been borne by the Purchaser.
        		<br>
                <b>IN WITNESS WHEREOF</b> the parties hereto have set and subscribed their respective hands and seals hereunto the day and year first hereinabove written.       
                <br>
                <BR>
              <B> NOW IT IS AGREED, DECLARED AND RECORDED BY THE PARTIES HERETO AS UNDER:-</B>
              <BR>
              Project Consultants and/or Project developer shall have exclusive rights to change, expand or revise or abandon altogether, the scheme or part of the scheme or any details therein including specification and make one or more sub-division of any Plot or 
              <br>
               </p>    
             </td>
            </tr>
          </table></td>
        </tr>
      </table>
      
      

            <p style="page-break-before: always" id="br"></p>

      <p align="center"><?=$a=$a+1;?></p>      <table width="100%" height="1140" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td><table width="436" border="0" align="right" cellpadding="0" cellspacing="0" style="margin-right:40px">
            <tr>
              <td width="436"><p align="justify" style="margin-top:0px; line-height:30px">
            
                 
                  <br>
                  combine two or more Plots of the scheme, merge common passages / corridors / roads with Plot wherever feasible, change the size and/or location and/or purpose of garden/common plots/construction of common plots/roads/entrance of the scheme, add one or more building/s and/or floor/s / basements, change floor height, remove common plot/s altogether, change amend the amenities, alter, abolish, modify etc. whenever and wherever admissible under the rules or laws and all such changes, revisions, expansions, sub-divisions and/or combinations, additions, removals, deletions, etc., shall be binding to all. . 
                  <br>
              <br>
              In the unlikely event of the various permission required from the various authorities, in event of change in Government Policies that restrict the development or any force majeure clause such as N.A. Permission for approval of plans of residential units or any other approvals not forthcoming, the Decisions of the developer are bound to the purchaser.
              <br>
              </p>     
             </td>
            </tr>
          </table></td>
        </tr>
      </table>
      
      

            <p style="page-break-before: always" id="br"></p>

      <p align="center"><?=$a=$a+1;?></p>      <table width="100%" height="1140" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td><table width="436" border="0" align="right" cellpadding="0" cellspacing="0" style="margin-right:40px">
            <tr>
              <td width="436"><p align="justify" style="margin-top:0px; line-height:30px">
            
                 
                  <br>
						      <p align="center"><i><b><font size="+1"><u>S</u>&nbsp;<u>C</u>&nbsp;<u>H</u>&nbsp;<u>E</u>&nbsp;<u>D</u>&nbsp;<u>U</u>&nbsp;<u>A</u>&nbsp;<u>L</u>&nbsp;</font></b></i></center><BR><center><i><b><font size="+1">(<u>P</u>&nbsp;<u>R</u>&nbsp;<u>O</u>&nbsp;<u>P</u>&nbsp;<u>E</u>&nbsp;<u>R</u>&nbsp;<u>T</u>&nbsp;<u>Y</u>&nbsp; &nbsp;<u>U</u>&nbsp;<u>N</u>&nbsp;<u>D</u>&nbsp;<u>E</u>&nbsp;<u>R</u>&nbsp; &nbsp;<u>S</u>&nbsp;<u>A</u>&nbsp;<u>L</u>&nbsp;<u>E</u>&nbsp;)</font></b></i></center></p>
                              All that immovable property shown by red coloured boundary on the plan attached herewith to this conveyance deed, being non-agriculture land of<b> Sub Plot no.&nbsp;<?=$fet_plot[0];?>,</b> admeasuring <b><?=$fet_plot[1];?> sq. mtrs.</b> Along with<b> <?=$fet_plot[2];?> sq. mtrs.</b> of undivided proportionate share in the common roads and common plots, aggregating to <b><?=$fet_plot[3];?> sq. mtrs.</b> of Dholera Metro City in the land of<b> Survey no.198 </b>admeasuring 36827 sq. mtrs., out of which 36659 sq. mtr. N.A. land situated at<B> Mouje Village Valinda, Taluka-Dhandhuka, District Ahmedabad,</B> Registration Sub District-Ahmedabad(Dhandhuka)  

              <br>
              <BR>
              <BR>
                 <p align="center"><b><u>Above referred  Sub-Plot No. <?=$fet_plot[0];?> is bounded as follows:-</u></b></p>
                 <p align="center">
                 	<table align="center">
                    <tr>
                    	<td>On the East&nbsp;:&nbsp;</td>
                        <td><?php echo $fet_plot['east'];?></td>
                    
                    </tr>
						<tr>
                    	<td>On the West&nbsp;:&nbsp;</td>
                        <td><?php echo $fet_plot['west'];?></td>
                    
                    </tr>
						<tr>
                    	<td>On the North&nbsp;:&nbsp;</td>
                        <td><?php echo $fet_plot['north'];?></td>
                    
                    </tr>
                    <tr>
                    	<td>On the South&nbsp;:&nbsp;</td>
                        <td><?php echo $fet_plot['south'];?></td>
                    
                    </tr>

                    
                    </table>

                 
                 </p>  
                 <p align="center"><b><u>Above referred Survey no.<?=$fet_sur[0];?> is bounded as follows:-</u></b></p>
                  <p align="center">
                 
              			<table align="center">
                    <tr>
                    	<td>On the East&nbsp;:&nbsp;</td>
                        <td><?php echo $fet_sur['east'];?></td>
                    
                    </tr>
						<tr>
                    	<td>On the West&nbsp;:&nbsp;</td>
                        <td><?php echo $fet_sur['west'];?></td>
                    
                    </tr>
						<tr>
                    	<td>On the North&nbsp;:&nbsp;</td>
                        <td><?php echo $fet_sur['north'];?></td>
                    
                    </tr>
                    <tr>
                    	<td>On the South&nbsp;:&nbsp;</td>
                        <td><?php echo $fet_sur['south'];?></td>
                    
                    </tr>

                    
                    </table>
                 </p> 
                
                 </p>
                              
             </td>
            </tr>
          </table></td>
        </tr>
      </table>
      

            <p style="page-break-before: always" id="br"></p>

      <p align="center"><?=$a=$a+1;?></p>
      <table width="100%" height="1140" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td><table width="436" border="0" align="right" cellpadding="0" cellspacing="0" style="margin-right:40px; margin-top:160px;">
            <tr>
              <td width="436"><p align="justify" style="margin-top:0px; line-height:30px">
            
                 <b><u>POSTAL ADDRESS:-Sub Plot no.<?php $fet_plot[0];?> "Dholera Metro City", Village-Valinda, Taluka-Dhandhuka, Dist-Ahmedabad.</u></b>
                 <br>
                 <br><br><br><br>
                 <div style="margin-left:0px; width:240px; float:left;">
                  _________________________<br>
                 <b>(1)MR.DHRUBHAI KANJIBHAI PATEL</b>
                 [Vendor]
                 </div>
                 <!--<p align="left"><b>_____________________________</b><br>
                 <b>(1)MR.DHRUBHAI KANJIBHAI PATEL</b><br>
                 	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[Vendor]
                 </p>-->
                 <br><br><br><br><br>
                 <div>
                 <div style="margin-left:0px; width:230px; float:left;">
                 __________________________
                 	<b>M/s.DHOLERA SIR INFRA
                    DEVLOPMENT,by and through
                    its authorized partner<br>
                    MR.Akshay Dhirubhai Patel
                    [Confirming Party-Developer]
                 
                 
                 </b></div>
                   <div style="margin-left:0px; padding-top:20px; width:180px; height:200px; float:right;">
                  	<table>
                   <?php
			
					 $inv_1 =mysql_query("select prefix,inv_name from investor_details  where plot_no = ".$opt);
 				
				while($row_1 = mysql_fetch_assoc($inv_1)) {
   $fet_put[] = $row_1;
}

							$max = mysql_num_rows($sel_inv);

							//$max = mysql_num_rows($inv_inv);
				
				for($i=0;$i<$max;$i++)
				{
				      ?>
                      <tr>
                      <td> 
                       <?php
                   echo "_____________________"."<br>";
				   	echo $fet_put[$i]['prefix'].$fet_put[$i]['inv_name']."<br>";
							echo "<center>[Purchaser]</center>"."<br>"."<br>";
					?>
                   </td></tr>
                    <?php
				   }
                 	?>
                   
                    </table>
                   </div>
                 </div>
                 </p>
             </td>
            </tr>
          </table></td>
        </tr>
      </table>
      
      
      

            <p style="page-break-before: always" id="br"></p>

      <p align="center"><?=$a=$a+1;?></p>
      <table width="100%" height="1140" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td><table width="436" border="0" align="right" cellpadding="0" cellspacing="0" style="margin-right:40px; margin-top:160px;">
            <tr>
              <td width="436"><p align="justify" style="margin-top:0px; line-height:30px">
            
                 <b><u>POSTAL ADDRESS:-Sub Plot no.<?=$fet_plot[0];?> "Dholera Metro City", Village-Valinda, Taluka-Dhandhuka, Dist-Ahmedabad.</u></b>
                 <br>
                 <br><br><br><br>    <div style="margin-left:0px; width:240px; float:left;">
                  _________________________<br>
                 <b>(1)MR.DHRUBHAI KANJIBHAI PATEL</b>
                 [Vendor]
                 </div>
<!--                 <p align="left"><b>_____________________________</b><br>
                 <b>(1)MR.DHRUBHAI KANJIBHAI PATEL</b><br>
                 	&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[Vendor]
                 </p>
-->                 <br><br><br><br><br>
                 <div>
                 <div style="margin-left:0px; width:230px; float:left;">
                 __________________________
                 	<b>M/s.DHOLERA SIR INFRA
                    DEVLOPMENT,by and through
                    its authorized partner<br>
                    MR.Akshay Dhirubhai Patel
                    [Confirming Party-Developer]
                 
                 
                 </b></div>
                   <div style="margin-left:0px; padding-top:20px; width:180px; height:200px; float:right;">
                  	<table>
                   <?php
			
					 $inv_1 =mysql_query("select prefix,inv_name from investor_details  where plot_no = ".$opt);
 				
				while($row_1 = mysql_fetch_assoc($inv_1)) {
   $fet_put[] = $row_1;
}

							$max = mysql_num_rows($sel_inv);

							//$max = mysql_num_rows($inv_inv);
				
				for($i=0;$i<$max;$i++)
				{
				      ?>
                      <tr>
                      <td> 
                       <?php
                   echo "_____________________"."<br>";
				   	echo $fet_put[$i]['prefix'].$fet_put[$i]['inv_name']."<br>";
							echo "<center>[Purchaser]</center>"."<br>"."<br>";
					?>
                   </td></tr>
                    <?php
				   }
                 	?>
                   
                    </table>
                   </div>
                 </div>
                 </p>
             </td>
            </tr>
          </table></td>
        </tr>
      </table>
      
      
      

            <p style="page-break-before: always" id="br"></p>

      <p align="center"><?=$a=$a+1;?></p>
      <table width="100%" height="1140" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td><table width="436" border="0" align="right" cellpadding="0" cellspacing="0" style="margin-right:40px; margin-top:160px;">
            <tr>
              <td width="436"><p align="justify" style="margin-top:0px; line-height:30px">
            		  <div style="margin-bottom:100px;">
                 <div style="margin-left:0px; width:230px; float:left;">
                    <b>by the within named<br>
"Vendor"<br>
</b>
                 <b>(1)MR.DHRUBHAI KANJIBHAI PATEL</b><br>
                 </div>
                 <div style="float:right; padding-left:60px;">
                 ____________________
                 </div>
                 </div>
                                  <div style="margin-left:0px; width:230px; float:left; padding-top:30px;">

                 					in the presence of ….<br><br><br>
									1. ___________________<br><br><br>

									2. ___________________

</div> 
<div style="margin-top:50px; float:left; padding-left:0px; width:400px; line-height:25px;">
<B>SIGNED, SEALED AND DELIVERED<br>        
BY THE WITHINNAMED <br>
"Confirming Party"<br>
"DEVELOPER"	<br>			      
M/s. DHOLERA SIR INFRA DEVELOPMENT<br>
by and through its authorized Partner <br>
<p style="line-height:40px; padding-bottom:0px;">MR.Akshay Dhirubhai Patel</B>	__________________</p> <br> 
</div>       
                        
        <div style="margin-top:50px; float:left; padding-left:0px; width:400px; line-height:25px;">
		in the presence of …..<br><br>
1. ____________________<br><br>

2. ____________________

</div>      
            </p> </td>
            </tr>
          </table></td>
        </tr>
      </table>
      
      
      

            <p style="page-break-before: always" id="br"></p>

      <p align="center"><?=$a=$a+1;?></p>      <table width="100%" height="1140" border="0" cellpadding="0" cellspacing="0">
        <tr>
          <td><table width="436" border="0" align="right" cellpadding="0" cellspacing="0" style="margin-right:40px">
            <tr>
              <td width="436"><p align="justify" style="margin-top:0px;">
            
                 <p align="center"><b>The Schedule under Section 32(A) of Registration Act </b> </p>
              <div style="width:auto; height:auto; margin-bottom:30px;">
                 <div style="width:200px; float:left">
                 <p><b style="font-size:18px"><u>The Vendor</u></b></p><br><br>
                 <p style="padding-top::50px; padding-left:0px;">
                 __________________<Br>
                 <b>(1)MR.DHIRUBHAI KANJIBHAI PATEL</b>		
                 
                 </p>
                 </div>
                <div style="width:110px; float:left;">
                <b style="font-size:13px"><u>Photo</u></b>
                <div style=" margin-top:30px; padding-top:50px; border:solid 1px; width:100px; height:80px; padding-left:0px; margin-left:0px;">
                <center>PHOTO</center>
                </div>
				</div>
                <div style="width:120px;float:right">
                <b style="font-size:13px"><u>Thumb Impression</u></b>
                </div>
             </div>
             <?php
			for($i=0;$i<$max;$i++)
				{	
                   ?>
			 
             <div style="margin-top:10px; width:400px; height:20px; float:left;" ></div>
             <div style="width:auto; height:auto; margin-top:50px;">
                 <div style="width:200px; float:left">
                 <p><b style="font-size:16px"><u>The Purchaser</u></b></p><br><br>
                 <p style="padding-top::50px; padding-left:0px;">
                 <?php
                 echo "_____________________"."<br>";
				   	echo"<b>". $fet_put[$i]['prefix'].$fet_put[$i]['inv_name']."</b><br>";	
                 ?>
                 </p>
                 </div>
                <div style="width:110px; float:left;">
              
                <div style=" margin-top:30px; padding-top:50px; border:solid 1px; width:100px; height:80px;">
                <center>PHOTO</center>
                </div>
				</div>
                <div style="width:120px;float:right">
              
                </div>
             </div>
                   <?php
				}
				?>
                <div style="margin-top:10px; width:400px; height:20px; float:left;" ></div><br>
<div style="width:auto; height:auto; margin-bottom:30px;">
                 <div style="width:200px; float:left">
		                <p style="font-weight:bold;">SIGNED, SEALED AND DELIVERED<br>        
								BY THE WITHINNAMED "Confirming<br> 
								Party" "DEVELOPER"<br> 			      
								M/s. DHOLERA SIR INFRA DEVELOPMENT<br>
									by and through its authorized Partner<br> 
</p>
                 <p style="padding-top::50px; padding-left:0px;">
                 <br><br>
                 __________________<Br>
                 <b>Mr. Akshay Dhirubhai Patel</b>		
                 
                 </p>
                 </div>
                <div style="width:110px; float:left;">
              
                <div style=" margin-top:30px; padding-top:50px; border:solid 1px; width:100px; height:80px; padding-left:0px; margin-left:0px;">
                <center>PHOTO</center>
                </div>
				</div>
                <div style="width:120px;float:right">
              
                </div>
             </div>
             </p>
             </td>
            </tr>
          </table></td>
        </tr>
      </table>
      
      <!-- end of main table  -->
	  </div>
      </td>
      
      <tr>
<td align="center"><form><input type="submit" name="print" onClick="PrintDiv()"></form></td>
</tr>

  </tr>
  
  </table>





<!--<div id="country2" class="tabcontent">
<table width="632" border="1" align="left" cellpadding="0" cellspacing="0">
  <tr>
    
    <td><table width="100%" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td><img src="head4.jpg" width="632" height="221"></td>
  </tr><tr>
    <td><h3 align="center">Dholera Metro City 3 - Other Government Charges</h3></td>
  </tr>
  <tr>
    <td><div style="width:600px; padding:0px; margin-left:15px;" >
<form class="form1" id="form1" method="post" action="examples/Additional2.php" onMouseMove="sameinfo()" onKeyPress="sameinfo()">


<table width="100%" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td><table width="100%" border="1" cellspacing="0" cellpadding="3">
      <tr>
        <td width="35%"><div align="center">Name</div></td>
        <td width="65%"><span class="size1">
          <input type="text" class="rfpforminputbox8" maxlength="100" size="30" value=""  id="firstname2" name="firstname2" onClick="makemewhite(this)" onKeyPress="makemewhite(this)" style="text-align:center; font-size:14px; font-weight:bold;" />
        </span></td>
      </tr>
      <tr>
        <td><div align="center">Contact No. </div></td>
        <td><span class="size1">
          <input type="text" class="rfpforminputbox9" maxlength="100" size="30" value=""  id="mobilenumber2" name="mobilenumber2"  onclick="makemewhite(this)" onKeyPress="makemewhite(this)" style="text-align:center; font-size:14px; font-weight:bold;"  />
        </span></td>
      </tr>
      <tr>
        <td><div align="center">Email Id </div></td>
        <td><span class="size1">
          <input type="Text" class="rfpforminputbox10" maxlength="100" size="30" value=""  id="email2" name="email2"  onclick="makemewhite(this)" onKeyPress="makemewhite(this)" style="text-align:center; font-size:14px; font-weight:bold;" >
        </span></td>
      </tr>
    </table></td>
  </tr>
  <tr>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td><table width="100%" border="1" cellspacing="0" cellpadding="3">
      <tr>
        <td width="35%"><div align="center">Select Plot No. </div></td>
        <td width="65%"><span class="size1">
          <select name="plot_no2" class="rfpformdropdown" id="plot_no2"  onclick="makemewhite(this)" onChange="makemewhite(this)" style="width:150px; font-size:14px; font-weight:bold;">
            <option value="">Please Select</option>
           <option title="346.69"value="179">179</option>
            <option value="180" title="294.69">180</option>
            <option title="294.67" value="181">181</option>
            <option title="294.67" value="182">182</option>
            <option title="372.72"value="183">183</option>
            <option title="274.67" value="184">184</option>
            <option title="167.39" value="185">185</option>
            <option title="167.39" value="186">186</option>
            <option title="167.39" value="187">187</option>
            <option title="167.39" value="188">188</option>
            <option title="315.22" value="189">189</option>
            <option title="315.22" value="190">190</option>
            <option title="167.39" value="191">191</option>
            <option title="167.39" value="192">192</option>
            <option title="167.39" value="193">193</option>
            <option title="167.39" value="194">194</option>
            <option title="274.67" value="195">195</option>
            <option title="275.67" value="196">196</option>
            <option title="167.39" value="197">197</option>
            <option title="167.39" value="198">198</option>
            <option title="167.39" value="199">199</option>
            <option title="167.39" value="200">200</option>
            <option title="315.22" value="201">201</option>
            <option title="315.22" value="202">202</option>
            <option title="167.39" value="203">203</option>
            <option title="167.39" value="204">204</option>
            <option title="167.39" value="205">205</option>
            <option title="167.39" value="206">206</option>
            <option title="274.67" value="207">207</option>
            <option title="274.67" value="208">208</option>
            <option title="167.39" value="209">209</option>
            <option title="167.39" value="210">210</option>
            <option title="167.39" value="211">211</option>
            <option title="167.39" value="212">212</option>
            <option title="244.65" value="213">213</option>
            <option title="274.67" value="214">214</option>
            <option title="167.39" value="215">215</option>
            <option title="167.39" value="216">216</option>
            <option title="167.39" value="217">217</option>
            <option title="167.39" value="218">218</option>
            <option title="315.22" value="219">219</option>
            <option title="315.22" value="220">220</option>
            <option title="167.39" value="221">221</option>
            <option title="167.39" value="222">222</option>
            <option title="167.39" value="223">223</option>
            <option title="167.39" value="224">224</option>
            <option title="274.67" value="225">225</option>
            <option title="274.67" value="226">226</option>
            <option title="167.39" value="227">227</option>
            <option title="167.39" value="228">228</option>
            <option title="167.39" value="229">229</option>
            <option title="167.39" value="230">230</option>
            <option title="315.22" value="231">231</option>
            <option title="356.11" value="232">232</option>
            <option title="227.01" value="233">233</option>
            <option title="235.19" value="234">234</option>
            <option title="243.38" value="235">235</option>
            <option title="371.80" value="236">236</option>
            <option title="278.73" value="237">237</option>
            <option title="172.34" value="238">238</option>
            <option title="174.18" value="239">239</option>
            <option title="176.02" value="240">240</option>
            <option title="177.87" value="241">241</option>
            <option title="179.71" value="242">242</option>
            <option title="501.99" value="243">243</option>
            <option title="429.93" value="244">244</option>
            <option title="167.39" value="245">245</option>
            <option title="167.39" value="246">246</option>
            <option title="167.39" value="247">247</option>
            <option title="167.39" value="248">248</option>
            <option title="167.39" value="249">249</option>
            <option title="274.67" value="250">250</option>
            <option title="274.67" value="251">251</option>
            <option title="167.39" value="252">252</option>
            <option title="167.39" value="253">253</option>
            <option title="167.39" value="254">254</option>
            <option title="167.39" value="255">255</option>
            <option title="167.39" value="256">256</option>
            <option title="392.51" value="257">257</option>
            <option title="355.09" value="258">258</option>
            <option title="167.39" value="259">259</option>
            <option title="167.39" value="260">260</option>
            <option title="167.39" value="261">261</option>
            <option title="167.39" value="262">262</option>
            <option title="167.39" value="263">263</option>
            <option title="274.67" value="264">264</option>
            <option title="274.67" value="265">265</option>
            <option title="167.39" value="266">266</option>
            <option title="167.39" value="267">267</option>
            <option title="167.39" value="268">268</option>
            <option title="167.39" value="269">269</option>
            <option title="167.39" value="270">270</option>
            <option title="317.67" value="271">271</option>
            <option title="280.25" value="272">272</option>
            <option title="167.39" value="273">273</option>
            <option title="167.39" value="274">274</option>
            <option title="167.39" value="275">275</option>
            <option title="167.39" value="276">276</option>
            <option title="167.39" value="277">277</option>
            <option title="274.67" value="278">278</option>
            <option title="274.67" value="279">279</option>
            <option title="167.39" value="280">280</option>
            <option title="167.39" value="281">281</option>
            <option title="167.39" value="282">282</option>
            <option title="167.39" value="283">283</option>
            <option title="167.39" value="284">284</option>
            <option title="191.72" value="285">285</option>
            <option title="323.56" value="286">286</option>
            <option title="167.39" value="287">287</option>
            <option title="167.39" value="288">288</option>
            <option title="167.39" value="289">289</option>
            <option title="167.39" value="290">290</option>
            <option title="274.67" value="291">291</option>
            <option title="274.67" value="292">292</option>
            <option title="167.39" value="293">293</option>
            <option title="167.39" value="294">294</option>
            <option title="167.39" value="295">295</option>
            <option title="167.39" value="296">296</option>
            <option title="383.67" value="297">297</option>
            <option title="346.25" value="298">298</option>
            <option title="167.39" value="299">299</option>
            <option title="167.39" value="300">300</option>
            <option title="167.39" value="301">301</option>
            <option title="167.39" value="302">302</option>
            <option title="274.67" value="303">303</option>
          </select>
        </span></td>
      </tr>
      
    </table></td>
  </tr>
  <tr>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td><table width="100%" border="1" cellspacing="0" cellpadding="3">
      <tr>
        <td colspan="2" rowspan="2"><div align="center">Plot Area </div></td>
        <td width="32%"><div align="center">Sq. Yard </div></td>
        <td width="33%"><div align="center">Sq. Feet </div></td>
      </tr>
      <tr>
        <td><span class="size1">
          &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
          <input type="text" id="sq_yard2" name="sq_yard2" class="rfpforminputbox41" readonly="readonly" style="width:100px; text-align:center; font-size:14px; font-weight:bold;" />
        </span></td>
        <td><span class="size1">
         &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <input type="text" id="sq_feet2" name="sq_feet2" class="rfpforminputbox21111" readonly="readonly" style="width:100px; text-align:center; font-size:14px; font-weight:bold;" />
        </span></td>
      </tr>
    </table></td>
  </tr>
  <tr>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td><table width="100%" border="1" cellspacing="0" cellpadding="3">
      <tr>
        <td colspan="2" rowspan="2"><div align="center">Price </div></td>
        <td width="32%"><div align="center"><span class="size1 style38">per sq. yard</span></div></td>
        <td width="33%"><div align="center"><span class="size1 style38">per sq. Feet </span></div></td>
      </tr>
      <tr>
        <td><span class="size1">
          &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type="text" id="price_per_sq_yard2" name="price_per_sq_yard2" class="rfpforminputbox31" readonly="readonly" style="width:100px; text-align:center; font-size:14px; font-weight:bold;" />
        </span></td>
        <td><span class="size1">
          &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type="text" id="price_per_sq_feet2" name="price_per_sq_feet2" class="rfpforminputbox1111" readonly="readonly" style="width:100px; text-align:center; font-size:14px; font-weight:bold;" />
        </span></td>
      </tr>
    </table></td>
  </tr>
  <tr>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td><table width="100%" border="1" cellspacing="0" cellpadding="3">
      <tr>
        <td width="35%"><div align="center">Total Payment</div></td>
        <td width="65%"><span class="size1">
          <input type="text" id="total_payment2" name="total_payment2" class="rfpforminputbox12" readonly="readonly" style="width:150px; text-align:center; font-size:14px; font-weight:bold;"  />
        </span>Rs.</td>
      </tr>
    </table></td>
  </tr>
  <tr>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td><div align="center" class="style40" style="padding:10px;"><strong>Additional Government Charges </strong></div></td>
  </tr>
  <tr>
    <td><table width="99%" border="1" align="center" cellpadding="2" cellspacing="0" style="border:1px #999999 solid;">
      <tr>
        <td width="31%" align="left" valign="top">Service Tax </td>
        <td width="43%" align="left" valign="top"><div align="center">3.09%</div></td>
        <td width="26%"><input type="text" id="service2" name="service2" class="rfpforminputbox81" readonly="readonly" style="width:150px; text-align:center; font-size:14px; font-weight:bold; border:none;"  /></td>
      </tr>
      <tr>
        <td width="31%" align="left" valign="top">Registration Duty </td>
        <td width="43%" align="left" valign="top"><div align="center">1.00%</div></td>
        <td><input type="text" id="regi2" name="regi2" class="rfpforminputbox91" readonly="readonly" style="width:150px; text-align:center; font-size:14px; font-weight:bold; border:none;"  /></td>
      </tr>
      <tr>
        <td width="31%" align="left" valign="top">Stamp Duty </td>
        <td width="43%" align="left" valign="top"><div align="center">4.90%</div></td>
        <td><input type="text" id="stamp2" name="stamp2" class="rfpforminputbox101" readonly="readonly" style="width:150px; text-align:center; font-size:14px; font-weight:bold; border:none;"  /></td>
      </tr>
      <tr>
        <td width="31%" align="left" valign="top">Development cum Maintanance Charges </td>
        <td width="43%" align="left" valign="top"><div align="center">200 Rs. per Sq. Yard </div></td>
        <td><input type="text" id="charge2" name="charge2" class="rfpforminputbox121" readonly="readonly" style="width:150px; text-align:center; font-size:14px; font-weight:bold; border:none;"  /></td>
      </tr>
      <tr>
        <td width="31%" align="left" valign="top">Lawyer Fee </td>
        <td width="43%" align="left" valign="top"><div align="center">Per Sale Deed </div></td>
        <td><input type="text" id="deed" name="deed" class="rfpforminputbox131" readonly="readonly" style="width:150px; text-align:center; font-size:14px; font-weight:bold; border:none;" value="10000"   /></td>
      </tr>
    </table></td>
  </tr>
  <tr>
    <td>&nbsp;</td>
  </tr>
  <tr>
              <td align="left" colspan="2"><span class="style34" style="padding:5px;"><img src="arrow.jpg" style="float:left; margin:3px;" width="15" height="14">Electricity, water & drainage connection will be charge by Government as per rules</span></td>
            </tr>
            <tr>
              <td align="left" colspan="2"><span class="style34" style="padding:5px;"><img src="arrow.jpg" style="float:left; margin:3px;" width="15" height="14">In case of registration in the name of lady, Registration duty will be waived</span></td>
            </tr>
            <tr>
              <td align="left"colspan="2"><span class="style34" style="padding:5px;"><img src="arrow.jpg" style="float:left; margin:3px;" width="15" height="14">Service Tax has to pay with every payment against plot purchase. Rest of the &nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;payment has to pay @ time of Sale Deed reg.</span></td>
            </tr>
  
  <tr>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>&nbsp;</td>
  </tr>
  <tr>
    <td>
	
	<table width="250" border="0" cellspacing="0" cellpadding="0" align="center">
  <tr>
   
	<td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td><td>&nbsp;</td>
	<td><img src="pdf2.jpg"></td>
	<td><input type='submit' id='btnprint' value='Create PDF' name='btnprint' class='button'></td>
    </tr>
</table></td>
  </tr>
  <tr>
    <td>&nbsp;</td>
  </tr>
</table>











  <div id="display_data" style="display:none;"></div>
</form>
</div></td>
  </tr>
  <tr>
    <td><img src="footer.jpg" width="632" height="206"></td>
  </tr>
</table>
</td>
  </tr>
</table>
</div>

</div>
<ul id="countrytabs" class="shadetabs" style="margin-left:190px;">
<li><a href="#" rel="country1" class="selected">With Letterhead</a></li>
<li><a href="#" rel="country2">Without Letterhead</a></li>

</ul>

<script type="text/javascript">

var countries=new ddtabcontent("countrytabs")
countries.setpersist(true)
countries.setselectedClassTarget("link") //"link" or "linkparent"
countries.init()

</script>
-->







<script src="js/validation.js"></script>
<script src="js/sale_deed.js"></script>

</body>
</html>
<?php
ob_flush();
?>