window.addEvent('domready',function(){
 if ($('tell-us-trigger'))
 {
	$('tell-us-trigger').addEvent('click',function(ev){
  		window.open((window._path ? window._path : '/')+'feedbackpopup.html','feedback','width=441,height=540,scrollbars=no,menubar=no,status=no,location=no,resizable=no');
 		});
 }

 if($('feedback_input_page'))
 {
  $('feedback_input_page').value=window.opener.location.href;
  $('do_contact').addEvent('click',function(ev){
	$('contactinfo').setStyle('display','block');
  });

  $('dont_contact').addEvent('click',function(ev){
	$('contactinfo').setStyle('display','none');
  });
 }

});


