﻿function popup(url, windowwidth, windowheight){
		options = 'location=no,height=' + windowheight + ',width=' + windowwidth + ',screeny=0,screenx=0,left=0,top=0,scrollbars=yes,toolbar=no,menu=no,resizable=yes,status=yes';
		winpop = window.open(url,'',options);
}


function openFeedbackWindow(feedbackLink) {
    window.open(feedbackLink.href + '&r=<%=HttpUtility.UrlEncode(Request.Url.ToString())%>',"_blank","height=630,width=630,status=yes,toolbar=no,menubar=no,location=no,scrollbars=yes");
    return false;
}

function SearchClicked (cn, q) {
//alert('../content/search.aspx?cn=' + cn + '&q=' + q);
    if(q.length > 0)
        document.location.href = '../content/search.aspx?cn=' + cn + '&q=' + q;
}