First of all, your code doesn't work at all, and this is wrong.
Here is the code that works:
function Man(name) {
var lover = "simron";
this.wife = "rocy";
this.getLover = function(){return lover};
Man.prototype.getWife = function(){return this.wife;};
}
function Indian(){
var lover = "jothika";
this.wife = "kamala";
this.getLover = function(){return lover};
}
Indian.prototype = new Man();
Indian.prototype.constructor = Indian;
var oneIndian = new Indian();
document.write(oneIndian.getLover());
aMan , .
ctor .
, , getLover - , , .
.
. .