function ICWebPage(strSection, strPathName) {
	var strGoTo = ""
	if (strSection == 'signal_integrity') { strGoTo = "/wrf/sis.aspx?ShowMenu=0" }
	else if (strSection == 'flex_circuitry') { strGoTo = "/wrf/fc.aspx" }
	else if (strSection == 'hsc' || strSection == 'cable_builder') { strGoTo = "/wrf/hdr.aspx" }
	else { strGoTo = "/internet_communicator/ic_request_form.asp?pathname=" + strPathName + "&section=" + strSection }
	window.open(strGoTo, 'pcb', 'resizable,status,width=915,height=565,scrollbars')
}

function SubmitToIC(strSection, strPathName, oForm) {
	oForm.action = "/internet_communicator/ic_request_form.asp?pathname=" + strPathName + "&section=" + strSection
	oForm.submit()
}

function ICChat(requestid, ic_web_page) {
	window.location = ic_web_page
	window.open('/internet_communicator/ic_request_chat.asp?requestid=' + requestid, 'chat', 'resizable,status,width=500,height=500,scrollbars')
}

function EnterToSubmit(TheKeyPressed) {
	alert(TheKeyPressed)
}

function ICLogOut(requestid) {
	document.chat_message.message.value = 'Logged Out'
	document.chat_message.submit()
}