 function showPic(picture,title,width,height)

{

   newWindow = window.open("","newWindow","width="+width+",height="+height);

   newWindow.document.open();

   newWindow.document.write('<html><head><title>'+title+'</title>');

   newWindow.document.write('</head><body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">');

   newWindow.document.write('<img src="'+picture+'">');

   newWindow.document.write('</body></html>');

   newWindow.document.close();

  newWindow.focus();   

}



function view(url,file,title,width,height)

{ 

  newWindow = window.open(url+'?file='+file+'&title='+title,'view','toolbar=no,location=no,menubar=no,resizable=no,scrollbars=yes, width='+width+',height='+height+',top='+document.body.clientHeight/10+',left='+document.body.clientWidth/6);

  newWindow.focus();

}





function copydata() {

 if (document.order.user_is_recipient.checked) {

 	document.order.rep_family.value=document.order.client_family.value;

 	document.order.rep_name.value=document.order.client_name.value;

 	document.order.rep_secondname.value=document.order.client_secondname.value;

 	document.order.rep_tel.value=document.order.client_tel.value;

 	document.getElementById('ring_yes').checked=true;

 	document.getElementById('ring_no').disabled=true;

 }

 else {

    document.getElementById('ring_no').disabled=false;

 }

} 
