var objDetailWindow;
var objCartWindow;

function viewKitDetail(intKitID) {
	var strURL;

	strURL = "kitDetail.asp?intKitID=" + intKitID;
	objDetailWindow = openWin(strURL,"Detail",200,350);
}

function openWin(strURL,strTitle,intHeight,intWidth) {
	var strProperties;	

	strProperties = "width=" + intWidth + ",height=" + intHeight + ",resizable=yes,scrollbars=yes,toolbar=no,location=no,status=no,menubar=no";
	return(window.open(strURL,strTitle,strProperties));
}

function openKitWin() {
	var strURL;

	strURL = "/order/cart.asp";

	if(objCartWindow != null) {
		if(!objCartWindow.closed) {
			if(objCartWindow.location==strURL) {
				objCartWindow.reload();
			} else {
				objCartWindow.location=strURL;
			}
			objCartWindow.focus();
			return;
		}
	}	
	objCartWindow = openWin(strURL,"Cart",550,550);
	return(objCartWindow);
}