function doComments(intId) {
	try {
		var a=window.open("http://smpc.com.br/inventory/customers/comments/comments.asp?kn_id="+ intId + "&lang=" + strLanguageCode, "comments", "height=500px, width=450px, status=no, resizable=yes, scrollbars=yes");
	} catch(e) {
		alert ("Popup blocked:" + e.message);
	}
}
function doOpen(strTitle, strUrl,intWidth,intHeight) {
	var a=window.open ("about:blank", "", "height=" + (intHeight+25) + ", width=" + (intWidth+25) );
	var str="<html><head><title>" + strTitle + "</title></head><body>";
	str+="<img src='" + strUrl + "'>";
	str+="</body></html>";
	a.document.write(str);
}
