﻿function showLightWindow(iUrl,iTitle,iWidth,iHeight){
	
	if (iTitle.length > 40){
		iTitle = iTitle.substring(0,40);
	}
	//  Create the lightwindow
	myLightWindow.activateWindow({
		href: iUrl,
		type: 'external',
		title: iTitle,
		width: iWidth,
		height: iHeight
	});
}

function showProduct(id, title) {
	showLightWindow('/part-info.asp?id=' + id.toString(), title, 300, 300);
}

function showFaq(id, title) {
	showLightWindow('/faq-popup.asp?id=' + id.toString(), title, 300, 300);
}

function showTroubleshoot(id,title) {
	showLightWindow('/troubleshoot.asp?id=' + id.toString(), title, 600, 600);
}

function notifyParent() {
	if (parent != null){
		if (parent.document.forms[0].finished != null) {
			parent.document.forms[0].finished.value = "yes";
		}
	}
}
