// open emoticon list in a popup window
function emoticons() {
	var top = 150; var left = 500;
	var width = 180; var height = 250;
	var param = "toolbar=no,scrollbars=yes,resizable=no,top=" + top + ",left=" + left + ",width=" + width + ",height=" + height;
	window.open("emoticons.cfm","emoticons",param);
}

// open color picker
function colorpicker(formname, fieldname) {
	var top = 150; var left = 500;
	var width = 340; var height = 260;
	var param = "toolbar=no,scrollbars=no,resizable=no,top=" + top + ",left=" + left + ",width=" + width + ",height=" + height;
	var url = "chat/colorpicker.cfm?formname=" + formname + "&fieldname=" + fieldname;
	window.open(url,"colorpicker",param);
}
