document.write(" <script language='javascript' src='ad_gpsy_top_B.js'> </script>"); 

function alertInTwo(){ 
    alert("in Two"); 
} 

function test1() {} 
test1.prototype.prop2 = "prop2"; 
test1.prototype.method2 = function(){ 
    alert("outer define "+this.prop2); 
} 


Object.extend = function(destination, source) { 
  for (var property in source) { 
    destination[property] = source[property]; 
  } 
  return destination; 
}
