<!--
document.write('<style type="text/css">');
document.write('<!--');
document.write('#feedback_icon {');
document.write('	position:absolute;');
document.write('	bottom: 10px;');
document.write('	right: 10px;');
document.write('	height:20px;');
document.write('	width:60px;');
document.write('	border:1px solid #6B90DA;');
document.write('	background-color:#F0F7F9;');
document.write('	margin:0px;');
document.write('	padding:0px;');
document.write('	text-align:center;');
document.write('	text-decoration:none;');
document.write('	font-family: Helvetica, Verdana, Geneva;');
document.write('	font-size: 8pt;');
document.write('	color: #000000;');
document.write('	}');
document.write('#feedback_layer {');
document.write('	display:none;');
document.write('	position:absolute;');
document.write('	bottom: 30px;');
document.write('	right: 30px;');
document.write('	}');
document.write('#feedback_window {');
document.write('	border:2px solid #6B90DA;');
document.write('	height:350px;');
document.write('	width:500px;');
document.write('	}');
document.write('-->');
document.write('</style>');
document.write('<a href="javascript:feedback\();" title="Send your feedback!" id="feedback_icon">Feedback</a> ');
document.write('<div id="feedback_layer">');
document.write('<iframe src="" name="feedback_window" id="feedback_window" frameborder="0"></iframe>');
document.write('</div>');
var bodyfrm = ( document.compatMode.toLowerCase()=="css1compat" ) ? document.documentElement : document.body;
var feedback_layer = document.getElementById('feedback_layer').style;
var feedback_icon = document.getElementById('feedback_icon').style;
function feedback() {
feedback_window_url='http://feedback.widget.me/window.html?uid='+fid;
parent.feedback_window.location.href=feedback_window_url+'&title='+document.title;
vista = (feedback_layer.display == 'block') ? 'none' : 'block';
feedback_layer.display = vista;
}
function moveF() {
feedback_layer.top = ( bodyfrm.scrollTop + bodyfrm.clientHeight - 350 - 30 - 4) + "px";
feedback_icon.top = ( bodyfrm.scrollTop + bodyfrm.clientHeight - 20 - 10 - 2) + "px";
}
function getFeedback() {
setInterval("moveF();", 1);
}
//-->