есть сценарий
<head>
<title>anc</title>
<script language='text/javascript'>
function card(name,address,work,home){
this.name=name;
this.address=address;
this.workphone=work;
this.homephone=home;
}
function print(){
stra='name'+this.name+'<br>\n';
strb='addr'+this.address+'<br>\n';
strc='work'+this.workphone+'<br>\n';
strd='home'+this.homephone+'<br>\n';
document.write(stra,strb,strc,strd);
}
function card(name,address,work,home){
this.name=name;
this.address=address;
this.workphone=work;
this.homephone=home;
this.print=print;
}
fck=new card('fck','street','555','555');
</script>
</head>
грамотно ли я написал и как правильно вывести функцией print(); на печать содержимое вновь созданных обьектов в теле документа ?
p.s.
немогу найти общего языка с debugger'ом