var selection_color;var psel_selected_item_name = '';var selected_product_summary_layer;function SlideLayer(){	if (typeof selected_product_summary_layer != 'undefined') {		var ie_body = (document.compatMode && document.compatMode != "BackCompat")? document.documentElement : document.body;		var page_top;		if (ie5) {			page_top = ie_body.scrollTop;		} else {			page_top = pageYOffset;		};		selected_product_summary_layer.style.top = page_top + 5 + "px";	};};function ShowSelectedProductDetails(target_frame, selected_item){	var temp_name;	var item_name;	if (typeof selected_item == 'undefined') {		item_name = psel_selected_item_name;	} else if (selected_item.name != '') {		temp_name = selected_item.name		item_name = temp_name.substring(0, temp_name.indexOf(':selection'));	};	if (item_name != '') {		target_frame.location = 'http://' + self.location.host + 			'/products/Search Posted Datasheet by PartNumber/' +			item_name + '/$FILE/' + item_name + '.pdf'	};};function ShowSelectedProductSummary(target_frame, selected_item){	var temp_name	var item_name	if (psel_selected_item_name != '') {		ClearSelectedProductSummary(target_frame);	};	if (selected_item.name != '') {		temp_name = selected_item.name;		item_name = temp_name.substring(0, temp_name.indexOf(':selection'));		psel_selected_item_name = item_name		with (target_frame){			document['Product_Photo'].src = 'blank.gif'//			document['Product_Photo'].src = item_name + '_small.jpg'		};		var temp = GetElementByID(target_frame, item_name + ':layer');		temp.style.visibility = 'visible';		selected_product_summary_layer = temp;	};};function ClearSelectedProductSummary(target_frame, selected_item){	var temp_name	var item_name	if (typeof selected_item == 'undefined') {		item_name = psel_selected_item_name		psel_selected_item_name = ''	} else if (selected_item.name != '') {		with (target_frame){			document['Product_Photo'].src = 'JL_Logo_Background.gif'		};		temp_name = selected_item.name;		item_name = temp_name.substring(0, temp_name.indexOf(':selection'));	};	if (item_name != '') {		var temp = GetElementByID(target_frame, item_name + ':layer');		temp.style.visibility = 'hidden';	};};function MouseOverSelection(target_frame, selected_item){	window.status = 'Click to download product details in pdf format';	selection_color = selected_item.style.color;	temp_color = 'gray';	if (selection_color == temp_color) {		temp_color = 'black'	};	selected_item.style.color = temp_color;};function MouseOutSelection(target_frame, selected_item){	window.status = '';	selected_item.style.color = selection_color;};if (ie5) {	setInterval("SlideLayer()",100);};