
$(function() {

        if ($.browser.msie && $.browser.version == 6)
        {
            /*
             * above if condition checks for IE browser
             *
             **/
          $(".ui-dialog-container").css({ overflow: 'hidden' });
          
          //$("#temp").click( function(){ $('#dialog_user').dialog('close'); } );
          $("#dialog_user").dialog({
           /*
           * configuration for add user dialog box [IE]
           *
           **/
			bgiframe: true,
			autoOpen: false,
			height: 329,
			width: 802,
            position: ['center','top'],
			modal: true,
            /*buttons: {

                'Skip to puneproperties\.com': function() {
					$(this).dialog('close');
                        },
                   
				'Know more about this project': function() {
					location.href='http://pharandespaces.com/';
            			}
                    },*/
                close: function() {
				   	allFields.val('').removeClass('ui-state-error');
            		}

		});
		 $('#countdown').countDown({
                    startNumber: 10,
                    callBack: function(me) {
			location.href='http://www.mumbaiproperties.info/index1.php';
                        //$(me).text('All done! This is where you give the reward!').css('color','#090');
                        $('#dialog_user').dialog('close');
			
                    }
                });
        }else{
            /*
             *  Code for Other browsers (except IE)
             *  checked for Mozilla / Chrome
             *  
             **/
          
         
          $("#dialog_user").dialog({
                    bgiframe: true,
                    autoOpen: false,
                    height: 478,
		    width: 796,
                    position: ['center','top'],
                    modal: true,
                   /* buttons: {
					
					 'Skip to puneproperties\.com': function() {
					$(this).dialog('close');
                        },
                    

				'Know more about this project': function() {
					location.href='http://pharandespaces.com/';
                        }
                    },*/
               
                    close: function() {
			location.href='http://www.mumbaiproperties.info/index1.php';
		        allFields.val('').removeClass('ui-state-error');
                            }
                   
                });
		$('#countdown').countDown({
                    startNumber: 10,
                    callBack: function(me) {
                        location.href='http://www.mumbaiproperties.info/index1.php';
			//$(me).text('All done! This is where you give the reward!').css('color','#090');
                        $('#dialog_user').dialog('close');
			
                    }
                });

            }

	});

 
