function breakout_of_frame()
{
  if (top.location != location) {
    top.location.href = document.location.href ;
  }
}
function openWindow(theURL,winName,features) {
        window.open(theURL,winName,features);
}
function openWindowandFocus(theURL,winName,features) {
        thiswin = window.open(theURL,winName,features);
		thiswin.focus();
}
function feedback_link(e, top_doc_id)
{
	if(window.current_doc_id)
		doc_id = current_doc_id;
	else if(window.default_doc_id)
		doc_id = default_doc_id;
	else
		doc_id = top_doc_id;

	if(window.activeadmin)
		e.href = 'javascript:openWindowandFocus(\'https://www.activecom.net/admin/ticket/index.php?itemspecific=1&type=d&' + 'id=' + doc_id + '\',\'ticketWin\',\'status=yes,scrollbars=yes,resizable=yes,width=800,height=350\');';
	else
		e.href = '/about/contact.php?href=' + document.location.href;
}