// CONTACT AJAX Javascript


$(document).ready(function() {

$(".show_dialog").mouseover(function() {

var popno = $("#popid").val();
popno = encodeURIComponent(popno);
var dataString = 'id=' +popno;

   $.ajax({
     type: "POST",
     url: "/scripts/ajax_dialog.asp",
     data: dataString,
     cache: false,
     success: function(html) {
     
     $("div#dialog").show().append(html);
     
     }

   }); 		// end of AJAX
   
   return false;

}); 		// end of show_dialog mouseover function

}); 		// end of document.load

